| 123456789101112131415161718192021222324252627282930313233343536373839 | -- name: GetAuthor :oneSELECT * FROM authorsWHERE id = ? LIMIT 1;-- name: ListAuthors :manySELECT * FROM authorsORDER BY name;-- name: CreateAuthor :execresultINSERT INTO authors (  name) VALUES (  ?);-- name: DeleteAuthor :execDELETE FROM authorsWHERE id = ?;-- name: GetLink :oneSELECT * FROM golinksWHERE name = ? LIMIT 1;-- name: ListLinks :manySELECT * FROM golinksORDER BY name;-- name: CreateLink :execresultINSERT INTO golinks (  name, target) VALUES (  ?, ?);-- name: DeleteLink :execDELETE FROM golinksWHERE id = ?;
 |