Hacker News new | ask | show | jobs
by tantalor 59 days ago
> SQL databases ... confused

"SQL" and "databases" are different things

SQL is a declarative language for data manipulation. You can use SQL to query a database, but there's nothing special about databases. You can also write SQL to query other non-database sources like flat files, data streams, or data in a program's memory.

Conversely, you can query a database without SQL.

3 comments

A SQL database is a database you can connect to and query with SQL.
> Conversely, you can query a database without SQL.

fond memories of quel.

thanks Captain Obvious, where would we be without you