mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-01-19 23:26:32 +00:00
6 lines
102 B
SQL
6 lines
102 B
SQL
with accounts (id, name) as (
|
|
VALUES (1, 'Herp Derpinson')
|
|
)
|
|
select * from accounts
|
|
where id = ?;
|