sql

Select multiple columns with SQL

To select multiple columns with SQL, you have to indicate the name of the columns after the SELECT keyword, separated by a comma and indicate the table name with the FROM keyword.

Code

SELECT column_name1, column_name2, column_name3
FROM table_name