SQL
(Structured Query Language)
SQL(Structured Query Language) Allows us to ask questions in a database and get results
(data).
Question- query
Key words:
Select
* wildcard
From location
Select * from “result”;
Select “AthleteID”,”Rank” from “result”;
Select “AthleteID”,”Rank” from “result” where “Rank” = 1;
names with B * or % beside B works
Text only has single quotes. Numbers don’t take quotes