10 lines
189 B
SQL
10 lines
189 B
SQL
SELECT
|
|
id,
|
|
full_name,
|
|
credential,
|
|
credential_type as "credential_type: _",
|
|
profile_picture_url,
|
|
time_created,
|
|
last_updated
|
|
FROM agent
|
|
ORDER BY time_created DESC; |