“Instructions SQL Select” Réponses codées

SQL SELECT

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

Instructions SQL Select

SELECT orders.order_id, customers.last_name
FROM orders
INNER JOIN customers
ON orders.customer_id = customers.customer_id
WHERE orders.order_id <> 1
ORDER BY orders.order_id;
Attractive Ape

SQL SELECT

Mit SELECT können Daten aus der Datenbank abgefragt werden. Es ist die am 
meissten verbreitete Art.

  SELECT name
  FROM country
  WHERE region = (
      SELECT region
      FROM country
      WHERE name = 'Brasilien'
      )
Eager Elephant

Instruction SQL Select

Projection = Select the columns in
a table that are returned by a query
Selection = Selects the rows in a
table that are returned by a query
Join = Brings together data that is 
stored in different tables by
specifying the link between them
Obedient Ocelot

Réponses similaires à “Instructions SQL Select”

Questions similaires à “Instructions SQL Select”

Plus de réponses similaires à “Instructions SQL Select” dans Sql

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code