In this part of SQL training we will learn about querying tables, SQL Caluses and how to use them together to get required data from our data tables.
As of now you have already ran several sql statements and queried multiple tables. So let's get straight into understanding and running SELECT statement along with when and how to use it.
To query a table means extracting data from the table and SQL has a specific DQL command for this task and that's SELECT statement. Select Statement consist of at least 4 parts.
To start querying the data, lets use our dpu_college database(click here to get the sql script to create dpu_college db). You can use db-fiddle or MySQL Workbench in your local machine to run the queries
Example: Show all the data in student table within dpu_college database
To get the entire data from all the comuns of a table you need to use asterisk(*) in the SELECT statement
SELECT * FROM dpu_college.student;
Question 1: Show all the data in faculty table within dpu_college database
Click here to reveal the solution!
SELECT * FROM dpu_college.faculty;
Question 2: Show all the data in dept table within dpu_college database
Click here to reveal the solution!
SELECT * FROM dpu_college.dept;
Example: Show Name and Marks of all the students from student table
To limit the number of records use LIMIT at the end of SELECT statement
SELECT NAME, MARKS
FROM dpu_college.student;
Question 3: Show Name and DEPT_ID of all the faculties from faculty table and limit the number of records to 5
Click here to reveal the solution!
SELECT NAME, DEPT_ID
FROM dpu_college.faculty
LIMIT 5;
Question 4: Show Name of 2 departments from dept table
Click here to reveal the solution!
SELECT NAME
FROM dpu_college.dept
LIMIT 2;
Clauses are in-built functions available in SQL, with the help of clauses we can deal with data easily or in simple workds it help us filter and analyze data quickly. When we have large amounts of data stored in the database, we use Clauses to query and get data required by the user.
Below are some of the SQL Clauses:
- Where Clause
- Like Clause
- Distinct Clause
- Limit Clause
- Order By Clause
- Group By Clause
- Having Clause
The SQL WHERE clause is used to specify a condition while fetching the data from a single table or by joining multiple tables. Based on the given condition it returns a specific value from the table. WHERE clause should be used to filter the records and fetching only the necessary records.
We have alreday used Where Clause in our previous examples, below is the syntax of Where Clause.
Syntax
SELECT column1, column2, columnN
FROM table_name
WHERE [condition];
Example
Show the name, department id and marks of all the students who scored more than 80 from student table
SELECT NAME, DEPT_ID, MARKS
FROM dpu_college.student
WHERE MARKS > 80;
Question 5: Show all the data from faculty table where DEPT_ID is 'M' and sort the data by NAME in ascending order
Click here to reveal the solution!
SELECT *
FROM dpu_college.faculty
WHERE DEPT_ID ='M'
ORDER BY NAME ASC;
The SQL LIKE clause is used to compare a value to similar values using wildcard operators. There are two wildcards used in conjunction with the LIKE operator in Where Clause.
- The percent sign (%)
- The underscore (_)
The percent sign represents zero, one or multiple characters. The underscore represents a single number or character.
Syntax
SELECT column1, column2, columnN
FROM table_name
WHERE column1 LIKE [pattern];
Example
Show id, name, department id and marks of all the students from student table whose name starts with 'A'
SELECT ID, NAME, DEPT_ID, MARKS
FROM dpu_college.student
WHERE NAME LIKE 'A%';
Question 6: Show all the data from faculty table where first two letters of name is 'Ma'
Click here to reveal the solution!
SELECT *
FROM dpu_college.faculty
WHERE NAME Like 'Ma%';
Question 7: Show all the data from student table where last name of the student is 'Singh'
Click here to reveal the solution!
SELECT *
FROM dpu_college.student
WHERE NAME LIKE '%Singh';
The DISTINCT caluse is get only distinct(unique/different) values from the columns of a table. Many time you will see that some of the columns in the table can contain duplicate values but you would only like to see the unique ones or those which are different from each other, to get such values you will need to use Select Distinct.
Syntax
SELECT DISTINCT column1
FROM table_name;
Example
Show the name, department id and marks of all the students who scored more than 80 from student table
SELECT DISTINCT NAME
FROM dpu_college.student;
Question 8: Show all the unique student names and their department from student table where DEPT_ID is 'F'.
Click here to reveal the solution!
SELECT DISTINCT NAME, DEPT_ID
FROM dpu_college.student
WHERE DEPT_ID='F';
The LIMIT clause is used to specify the number of records to return. It is is useful when you want to see the data from a large table with more than thousands of records. Returning a large number of records may not be useful every time and can impact performance and operating cost, so its useful to limit the number of records you query from a table.
Syntax
SELECT column_names
FROM table_name
WHERE condition
LIMIT number;
Example
Show two records from faculty table
SELECT *
FROM dpu_college.faculty
LIMIT 2;
Question 9: Show top 5 records from student table where marks is greater than or equal to 70
Click here to reveal the solution!
SELECT *
FROM dpu_college.student
WHERE MARKS >= 70
LIMIT 5;
The ORDER BY Clause is used to sort the records in ascending or descending order. When you use the SELECT statement to query data from a table, the order of rows in the result set is unspecified. To sort the rows in the result set, you add the ORDER BY clause to the SELECT statement.
Syntax
SELECT column_names
FROM table_name
ORDER BY column_name [ASC|DESC];
Example
Query faculty table and order the data by the name in ascending order.
SELECT *
FROM dpu_college.faculty
ORDER BY NAME ASC;
Question 10: Query student table to show top 10 records ordered by their marks in descending order.
Click here to reveal the solution!
SELECT *
FROM dpu_college.student
ORDER BY MARKS DESC
LIMIT 10;
The GROUP BY clause groups a set of rows into a set of summary rows by values of columns or expressions. The GROUP BY clause returns one row for each group. The GROUP BY statement is often used with aggregate functions (COUNT(), MAX(), MIN(), SUM(), AVG()) to group the result-set by one or more columns.
Syntax
SELECT column_names
FROM table_name
GROUP BY column_names;
Example
Show number of faculties in each department from faculty table
SELECT DEPT_ID, count(NAME)
FROM dpu_college.faculty
GROUP BY DEPT_ID;
Question 11: Show the number of students in each department who scored more than 60 marks from student table.
Click here to reveal the solution!
SELECT DEPT_ID, count(NAME)
FROM dpu_college.student
WHERE MARKS > 60
GROUP BY DEPT_ID;
Just Like WHERE clause HAVING caluse is also used to filter the data based on condition, but WHERE condition cannot filter data from aggregate columns. So to filter data from aggregate columns we need to use HAVING clause. Since HAVING clause always comes in picture where we have some kind of aggregation, it is always specified after GROUP BY clause.
Syntax
SELECT column_names
FROM table_name
WHERE condition
GROUP BY column_names
HAVING condition;
Example
Show all the departments with count of faculties where count of faculties is 2 or more from faculty table.
SELECT DEPT_ID, count(NAME)
FROM dpu_college.faculty
GROUP BY DEPT_ID
HAVING count(NAME) >= 2;
Question 12: Show all the department where number of student who scored 50 marks or higher is more than 5 from student table.
Click here to reveal the solution!
SELECT DEPT_ID, count(NAME)
FROM dpu_college.student
WHERE MARKS >= 50
GROUP BY DEPT_ID
HAVING count(NAME) > 5;
As you have already practiced in previous chapters how to query a table, here is something which will help you clear your confusion on the order in which SQL keyword are written in SQL syntax.
Now when you know the order in which SQL keywords are written, lets see the order in which the SQL keywords are exectued when you ran a select query.
Awesome! now you are a pro, but wait you still need to practice to become a real master.