sql

Select a column with SQL

To select one column with SQL, you have to indicate the name of the column after the SELECT keyword and indicate the table name with the FROM keyword.

Code

SELECT column_name
FROM table_name