9 lines
164 B
MySQL
9 lines
164 B
MySQL
|
SELECT
|
||
|
id,
|
||
|
full_name,
|
||
|
credential,
|
||
|
credential_type as "credential_type: _",
|
||
|
time_created,
|
||
|
last_updated
|
||
|
FROM agent
|
||
|
ORDER BY time_created DESC;
|