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

11 lines
200 B
MySQL
Raw Normal View History

2023-03-19 15:23:27 +00:00
SELECT
id,
2023-04-14 18:42:52 +00:00
shortcode,
2023-03-19 15:23:27 +00:00
full_name,
credential,
credential_type as "credential_type: _",
profile_picture_url,
2023-03-19 15:23:27 +00:00
time_created,
last_updated
FROM agent
ORDER BY full_name ASC;