Add script to select quotes with authors

main
Jeffrey Elkner 2 years ago
parent a633665f32
commit c73af3e063

@ -0,0 +1,5 @@
\echo INNER JOIN quote TO author:
SELECT qtext, fname, lname
FROM quote
INNER JOIN author
ON quote.aid = author.aid;
Loading…
Cancel
Save