Introduction to SQL
Jasmin Ludolf
Senior Data Science Content Developer, DataCamp
PostgreSQL:
SELECT id, name
FROM employees
LIMIT 2;
| id | name |
|-------|--------|
| 54378 | Darius |
| 94722 | Raven |
SQL Server:
SELECT TOP(2) id, name
FROM employees;
| id | name |
|-------|--------|
| 54378 | Darius |
| 94722 | Raven |
Just like with ice cream, any flavor is probably a good choice!
Introduction to SQL