asked 168k views
3 votes
​Which SQL keyword is used to search for records?

asked
User ArleyM
by
7.7k points

1 Answer

5 votes
SQL (Structured Query Language.) is the standard programming language for communicating and organizing databases (DB).
In order to search through the database the statement SELECT should be used.
SELECT select data from the database.
SELECT is followed by the statement FROM which defines from which database you search record.
answered
User Pax Beach
by
8.4k points