Introduction to SQL with AI
Jasmin Ludolf
Senior Data Science Content Developer
SELECT product_name
FROM products;
FROM
runs first$$
Understanding database structure helps to:
$$
$$
$$
$$
$$
Rows:
$$
$$
$$
Columns:
$$
Prompt: What are the order IDs in the orders table?
OR
Show me the order ids from the orders table
SELECT order_id
FROM orders;
$$
$$
$$
Introduction to SQL with AI