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: _",
|
2023-03-19 15:40:22 +00:00
|
|
|
profile_picture_url,
|
2023-03-19 15:23:27 +00:00
|
|
|
time_created,
|
|
|
|
last_updated
|
|
|
|
FROM agent
|
2023-04-14 18:42:52 +00:00
|
|
|
ORDER BY full_name DESC;
|