SQL FROM Keyword

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP







<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]
-->



SQL FROM Keyword


❮ SQL Keywords Reference



FROM


The FROM command is used to specify which
table to select or delete data from.


The following SQL statement selects the "CustomerName" and "City" columns
from the "Customers" table:




Example



SELECT CustomerName, City FROM Customers;


Try it Yourself »

The following SQL statement selects all the columns from the "Customers"
table:



Example



SELECT * FROM Customers;


Try it Yourself »


The following SQL statement deletes the customer "Alfreds Futterkiste" from
the "Customers" table:




Example



DELETE FROM Customers

WHERE CustomerName='Alfreds Futterkiste';

Try it Yourself »



❮ SQL Keywords Reference