How do I write a select statement in SQL?
Answers
Answered by
0
Explanation:
SELECT statements
The syntax is: SELECT column1, column2 FROM table1, table2 WHERE column2='value'; In the above SQL statement: The SELECT clause specifies one or more columns to be retrieved; to specify multiple columns, use a comma and a space between column names
Answered by
0
Answer:
SELECT * FROM table_name;
Explanation:
This statement is used to select all items from a table.
Similar questions
English,
5 hours ago
Economy,
5 hours ago
Social Sciences,
5 hours ago
Computer Science,
10 hours ago
Math,
10 hours ago
Math,
8 months ago
Math,
8 months ago