CBSE BOARD XII, asked by KnightSoul, 10 hours ago

How do I write a select statement in SQL?

Answers

Answered by BrainlyLifeRacer
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 Anonymous
0

Answer:

SELECT * FROM table_name;

Explanation:

This statement is used to select all items from a table.

Similar questions
Math, 8 months ago