In SQLServer there are table and variable table and variable table features.
What would be the most advantageous or best option to put in a procedure that inserts the query that was returned from a SELECT , and can store an average of 2 t...
I need to set the function soma_elementos
This function receives a list with integers and returns an integer corresponding to the sum of the elements of the list received. How do I do this?
def soma_elementos(lista):
l = []
I can not do this?
public List<Filial> GetAll()
{
//Mostra todos os registros incluindo os desativados para os Administradores
var ret = _db.Filiais.AsNoTracking()
.Where(e => e.Visible)
.Orde...
I am doubtful in a following Rule:
I have N Products and N Coins.
From this relationship I will have the ProductMode table:
ProdutoMoeda
Id - ProdutoId - MoedaID - Nome
1 2 1 ProdutoNome + MoedaNome
2 1 1...
Is it incorrect (or "semantically incorrect") to change the arguments in an extended classes in PHP?
For example I created this class:
class Bar
{
public function __construct($message, $code, $timer)
{
var_dump($message, $co...
I've read what an event , but then I saw that there are event handlers, event handler .
What is an event handler ?
What are they serving and where are they used?
Are there in all languages?
Problem: I have a table that is populated by data coming from multiple JSON files, so far no problem. The problem is that I need to update the data if the values contained in the JSON are different from what is in the table, but without changing...