Logo
You
Code

SQL

AVG Function

Autor YouCode - http://www.youcode.com.ar/sql/avg-function-249

The AVG() function returns the average value of a numeric column....

Calcular saldo de una cuenta corriente

Autor YouCode - http://www.youcode.com.ar/sql/calcular-saldo-de-una-cuenta-corriente-521

Como calcular el saldo de una cuenta corriente en MySql...

El lenguaje de consulta estructurado o SQL

Autor YouCode - http://www.youcode.com.ar/sql/el-lenguaje-de-consulta-estructurado-o-sql-241

SQL (por sus siglas en inglés Structured Query Language) es un lenguaje declarativo de acceso a bases de datos relacionales que permite especificar di...

FULL OUTER JOIN

Autor YouCode - http://www.youcode.com.ar/sql/full-outer-join-248

The FULL OUTER JOIN keyword returns all rows from the left table (table1) and from the right table (table2)....

INNER JOIN Keyword

Autor YouCode - http://www.youcode.com.ar/sql/inner-join-keyword-247

The INNER JOIN keyword selects all rows from both tables as long as there is a match between the columns in both tables....

LEFT JOIN Keyword

Autor YouCode - http://www.youcode.com.ar/sql/left-join-keyword-245

The LEFT JOIN keyword returns all rows from the left table (table1), with the matching rows in the right table (table2). The result is NULL in the rig...

LIKE Operator

Autor YouCode - http://www.youcode.com.ar/sql/like-operator-243

The LIKE operator is used in a WHERE clause to search for a specified pattern in a column....

MSSQL Saber el primer y ultimo dia de un mes

Autor YouCode - http://www.youcode.com.ar/sql/mssql-saber-el-primer-y-ultimo-dia-de-un-mes-433

Algunos query para saber el primer y ultimo dia de una fecha, tambien del mes siguiente y anterior....

MSSQL update con inner join

Autor YouCode - http://www.youcode.com.ar/sql/mssql-update-con-inner-join-419

Como hacer un update con inner join en Microsoft Sql Server...

RIGHT JOIN Keyword

Autor YouCode - http://www.youcode.com.ar/sql/right-join-keyword-246

The RIGHT JOIN keyword returns all rows from the right table (table2), with the matching rows in the left table (table1). The result is NULL in the le...

SQL Functions

Autor YouCode - http://www.youcode.com.ar/sql/sql-functions-244

SQL has many built-in functions for performing calculations on data....

SQL SELECT TOP

Autor YouCode - http://www.youcode.com.ar/sql/sql-select-top-242

The SELECT TOP clause is used to specify the number of records to return....