sql

Select all the columns with SQL

To select all the columns with SQL, you have to use the star character * after the SELECT keyword and indicate the table name with the FROM keyword.

Code

SELECT *
FROM table_name