sql

#programming/sql#programming#databases

SQL

SQL (Structured Query Language) is the standard for relational databases.

SELECT
  title,
  tags,
  publish
FROM notes
WHERE publish = true
ORDER BY title;

See Data Structures Overview · Programming Hub.