9 lines
116 B
MySQL
9 lines
116 B
MySQL
|
-- Retrieves the ssh keys per user
|
||
|
--
|
||
|
-- tags: postmortem
|
||
|
SELECT
|
||
|
*
|
||
|
FROM
|
||
|
users
|
||
|
JOIN user_ssh_keys USING (uid);
|