Retrieving, filtering, and sorting data are essential skills for managing structured databases effectively. Whether you're analyzing sales data or extracting meaningful insights, SQL provides powerful commands to manipulate datasets efficiently.

If you're new to SQL and haven't set up your database yet, we recommend starting with our article on creating databases and tables in SQL. In that guide, we covered how to structure a database and insert sample sales data. Now, let’s dive deeper into SQL queries, focusing specifically on the SELECT statement, filtering data using WHERE, and sorting results with ORDER BY.


Step 1: Using the SELECT Statement

The SELECT statement is used to retrieve data from a table. It allows you to specify which columns to display.

Fetch All Data:

SELECT * FROM sales;

This query retrieves all columns and rows from the sales table.

Select Specific Columns:

SELECT product_name, quantity, price FROM sales;

This retrieves only the product_name, quantity, and price columns.


Step 2: Filtering Data Using WHERE Clause

The WHERE clause allows filtering records based on conditions.

Retrieve Sales for a Specific Category:

SELECT * FROM sales WHERE category = 'Electronics';

This query fetches all sales transactions where the category is 'Electronics'.

Find Products with High Sales Volume:

SELECT * FROM sales WHERE quantity > 10;

This retrieves products with sales quantity greater than 10.

Filter by Date Range:

SELECT * FROM sales WHERE sale_date BETWEEN '2024-01-01' AND '2024-02-01';

This fetches sales records between January 1, 2024, and February 1, 2024.


Step 3: Sorting Data Using ORDER BY

The ORDER BY clause sorts data in ascending (ASC) or descending (DESC) order.

Sort by Price (Ascending):

SELECT * FROM sales ORDER BY price ASC;

This arranges the sales records from the lowest to the highest price.

Sort by Sale Date (Descending):

SELECT * FROM sales ORDER BY sale_date DESC;

This retrieves the latest sales transactions first.

Sort by Multiple Columns:

SELECT * FROM sales ORDER BY category ASC, price DESC;

This sorts data by category alphabetically, then orders prices in descending order within each category.


Conclusion

Mastering the SELECT, WHERE, and ORDER BY clauses enables efficient data retrieval, filtering, and sorting in SQL. These commands help organize and analyze large datasets effectively.

If you haven’t read our article on database and table creation, check it out to understand the foundational SQL operations before diving into queries.