Introduction to SQL with AI
Jasmin Ludolf
Senior Data Science Content Developer
$$
Prompt: Show me the first five products from the products table
Prompt: Show me the first five products from the products table
SELECT product_name
FROM products
LIMIT 5;
|product_name|
|------------|
| Laptop|
| Desktop|
| Gaming|
| Mouse|
| Keyboard|
PostgreSQL
SELECT product_name
FROM products
LIMIT 5;
|product_name|
|------------|
| Laptop|
| Desktop|
| Gaming|
| Mouse|
| Keyboard|
SQL Server
SELECT TOP 5 product_name
FROM products;
|product_name|
|------------|
| Laptop|
| Desktop|
| Gaming|
| Mouse|
| Keyboard|
Prompt: Show me the first 2 customers using SQL Server
SELECT TOP 2 name
FROM customer;
|name |
|--------|
|Madison |
|Giovanni|
$$
$$
$$
Introduction to SQL with AI