jl-backend-rs/sql/agent/fetch_with_shortcode.sql

11 lines
226 B
SQL

SELECT
id,
shortcode,
full_name,
credential,
credential_type as "credential_type: _",
profile_picture_url,
time_created,
last_updated
FROM agent where shortcode = $1
ORDER BY time_created DESC;