|
Specifies which table to select or delete data from
Especifica de qual tabela selecionar ou excluir dados
The following SQL statement selects the "CustomerName" and "City" columns from the "Customers" table:
A seguinte instrução SQL seleciona as colunas "CustomerName" e "City" da tabela "Customers":
SELECT CustomerName
, City
FROM Customers;
|
The following SQL statement selects all the columns from the "Customers" table:
A seguinte instrução SQL seleciona todas as colunas da tabela "Customers":
The following SQL statement deletes the customer "Alfreds Futterkiste" from the "Customers" table:
A seguinte instrução SQL exclui o cliente "Alfreds Futterkiste" da tabela "Customers":
DELETE FROM Customers
WHERE CustomerName = 'Alfreds Futterkiste';
|
|