- Help Center
- Integrations
- Getting Started with Integrations
Extract Massively Employee ID's with SQL
Learn how to extract employee ID's with the SQL function.
How can you extract all your employee's profile ID?
- Head to Reports
- Press on (...)
- Select SQL
- Insert the codes below
SELECT
employees.id
full_name AS Nombre_completo
FROM employees
💡You may notice now that the ID has been recognised with including the complete name of the employee.