“SQL Seleccione en dónde” Código de respuesta

SQL Seleccione en dónde

SELECT * FROM table_name WHERE country IN ('SPAIN', 'MEXICO');
VasteMonde

SQL Seleccione donde

SELECT * FROM table_name;
-- Sorting col1 ASCending then col2 DESCending
SELECT col1, col2 FROM table_name ORDER BY col1 ASC, col2 DESC;
-- Filter on col1
SELECT col1, col2 FROM table_name WHERE col1 = 'a value';
-- Containing 'searched'
SELECT col1, col2 FROM table_name WHERE col1 LIKE '%searched%';
-- All different values
SELECT DISTINCT col1 FROM table_name;
-- Simple sum
SELECT col1, sum(col2) FROM table_name GROUP BY col1;
VasteMonde

SQL SELECT WHERE CLAUSE

SELECT *
FROM Customers
WHERE last_name = 'Doe';
SAMER SAEID

Respuestas similares a “SQL Seleccione en dónde”

Preguntas similares a “SQL Seleccione en dónde”

Más respuestas relacionadas con “SQL Seleccione en dónde” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código