chirpy_server/sql/queries/chirps.sql

18 lines
311 B
MySQL
Raw Normal View History

2024-10-23 22:16:51 +02:00
-- name: CreateChirp :one
INSERT INTO chirps (id, created_at, updated_at, body, user_id)
VALUES (
gen_random_uuid(),
NOW(),
NOW(),
$1,
$2
)
RETURNING *;
-- name: GetChirps :many
SELECT * FROM chirps
ORDER BY created_at ASC;
-- name: GetChirp :one
SELECT * FROM chirps
WHERE chirps.id = $1;