answersLogoWhite

0

select name

from (table name)

where condition

The most fundamental and common elements of a SELECTstatement, namely

  • SELECT
  • FROM
  • WHERE
  • ORDER BY

1.SELECT "column_name" FROM "table_name"

2.SELECT "column_name" FROM "table_name" where "condition"

3.SELECT "column_name1","column_name2"FROM "table_name" where "condition" ORDER BY "column_name"

User Avatar

Wiki User

13y ago

Still curious? Ask our experts.

Chat with our AI personalities

RossRoss
Every question is just a happy little opportunity.
Chat with Ross
SteveSteve
Knowledge is a journey, you know? We'll get there.
Chat with Steve
CoachCoach
Success isn't just about winning—it's about vision, patience, and playing the long game.
Chat with Coach
More answers

SQL is acronym for structured query language. In database we retrieve data with the help of SQL.SQL commands are of four types DCL , DML, DDL and DRL. Example of DRL (data retrieval language) select * from table-name; .

User Avatar

Wiki User

10y ago
User Avatar

Add your answer:

Earn +20 pts
Q: What is the basic structure of SQL Select statement?
Write your answer...
Submit
Still have questions?
magnify glass
imp