First query execution
📖 Scenario: You are working with a small store database. You want to see the list of products available in the store.
🎯 Goal: Write a simple SQL query to select all columns from the products table.
📋 What You'll Learn
Create a table called
products with columns id, name, and priceInsert three products with exact values: (1, 'Pen', 1.20), (2, 'Notebook', 2.50), (3, 'Eraser', 0.80)
Write a SQL query to select all columns from the
products table💡 Why This Matters
🌍 Real World
Selecting data from a database is a common task in many applications like online stores, inventory systems, and more.
💼 Career
Knowing how to write and execute basic SQL queries is essential for database administrators, backend developers, and data analysts.
Progress0 / 4 steps