0 votes
in Sql by
How to select all records from the table?

1 Answer

0 votes
by
To select all the records from the table we need to use the following syntax:

Select * from table_name;
...