Login
Remember
Register
Ask a Question
How to select all records from the table?
0
votes
asked
Jul 8, 2020
in
Sql
by
Robindeniel
How to select all records from the table?
#sql-record-table
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 8, 2020
by
SakshiSharma
To select all the records from the table we need to use the following syntax:
Select * from table_name;
...