sql
SQL
SQL (Structured Query Language) is the standard for relational databases.
SELECT
title,
tags,
publish
FROM notes
WHERE publish = true
ORDER BY title;
SQL (Structured Query Language) is the standard for relational databases.
SELECT
title,
tags,
publish
FROM notes
WHERE publish = true
ORDER BY title;