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

10 lines
189 B
MySQL
Raw Normal View History

2023-03-19 15:23:27 +00:00
SELECT
id,
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 time_created DESC;