What does SQL stand for?
AnswerStructured Query Language
SQL is the standard language for querying and managing relational databases.
Coding · Facts & stats
7 fact-checked facts about databases, each with the reason behind it. 5 more are in today's round and join this page after it closes.
AnswerStructured Query Language
SQL is the standard language for querying and managing relational databases.
AnswerPrimary key
A primary key holds a unique value for each row so records can be identified exactly.
AnswerWHERE
WHERE keeps only rows that meet a condition, such as WHERE age > 18.
AnswerINNER JOIN
An inner join returns only rows with a match in both tables; outer joins also keep unmatched rows.
AnswerTo speed up finding rows
An index works like a book's index, letting the database find rows without scanning the whole table.
AnswerEdgar F. Codd
IBM researcher Edgar F. Codd described the relational model in a 1970 paper, the basis of SQL databases.
AnswerIsolation
ACID stands for Atomicity, Consistency, Isolation and Durability.