Books
Learn HTML
Learn CSS
Learn Git
Learn Javascript
Learn PHP
Learn python
Learn Java
Exercises
HTML
JavaScript
Git
CSS
PHP
Courses
Quizzes
Snippets
Tools
General Tools
Password Generator
HTML Editor
HTML Encoder
Base 64
Code Diff
JSON Beautifier
CSS Beautifier
Markdown Convertor
Find the Closest Tailwind CSS Color
Phrase encrypt / decrypt
Browser Feature Detection
Number convertor
JTW Decoder
CSS Maker
CSS Maker
CSS Maker text shadow
CSS Maker Text Rotation
CSS Maker Out Line
CSS Maker RGB Shadow
CSS Maker Transform
CSS Maker Font Face
Color Tools
Color Picker
Colors CMYK
Colors HWB
Colors HSL
Color Hex
Color mixer
Color Converter
Colors RGB
Color Contrast Analyzer
Color Gradient
String Tools
String Length Calculator
MD5 Hash Generator
Sha256 Hash Generator
String Reverse
URL Encoder
URL Decoder
Base 64 Encoder
Base 64 Decoder
Extra Spaces Remover
String to Lowercase
String to Uppercase
Word Count Calculator
Empty Lines Remover
HTML Tags Remover
Binary to Hex
Hex to Binary
Rot13 Transform on a String
String to Binary
Duplicate Lines Remover
EN
DE
RU
FR
ES
Change theme
Dark
Light
System
Books
Learn HTML
Learn CSS
Learn Git
Learn Javascript
Learn PHP
Learn python
Learn Java
How To
How To NodeJs
How To Linux
How To AngularJs
How To PHP
How To HTML
How To CSS
How To Symfony
How To Git
How To Apache
How To JavaScript
How To Java
How To Vue.js
How To Python
SQL Basics
1/25
With SQL, how do you select all the columns from a table named "Products"?
SELECT [all] FROM Products
SELECT All Products
SELECT *.Products
SELECT * FROM Products
Next >
2/25
What SQL keyword is applied for sorting the result-set?
SORT BY
ORDER
ORDER BY
SORT
Next >
3/25
Which SQL statement is applied for returning only different values?
SELECT UNIQUE
SELECT INDENTITY
SELECT DIFFERENT
SELECT DISTINCT
Next >
4/25
What SQL statement is used for inserting new data in a database?
ADD RECORD
ADD INTO
INSERT INTO
ADD NEW
Next >
5/25
Which SQL statement is used to delete data from a table?
TRUNCATE
DELETE
REMOVE
Next >
6/25
Which of the following is true about CASE SQL statement?
A way to establish an IF-THEN-ELSE in SQL.
A way to establish a loop in SQL.
A way to establish a data definition in SQL.
All of the above.
Next >
7/25
What does AVG SQL return?
The maximum value from a column.
The sum of values in a column.
The average of the values in a group.
Next >
8/25
Which of the following is an open standard application programming interface(API) for accessing a database?
Topic Map Query Language
Open Database Connectivity
Open Data-Link Interface
Universal Data Access
Next >
9/25
Which SQL statement adds a 'Salary' column to the 'Employees' table?
ALTER TABLE Employees ADD COLUMN Salary int
UPDATE TABLE Employees ADD Salary int
MODIFY TABLE Employees ADD Salary int
INSERT INTO Employees (Salary) VALUES (int)
Next >
10/25
What is the purpose of constraints in SQL?
To limit the type of data that can be stored in a column.
To join tables together based on a condition.
To sort the data in ascending or descending order.
To group data based on column values.
Next >
11/25
What does the SQL statement 'BEGIN TRANSACTION' do?
Starts a new SQL transaction.
Creates a new table called TRANSACTION.
Begins a new subquery.
Starts a new index creation process.
Next >
12/25
How do you use the GROUP BY clause in conjunction with aggregate functions?
SELECT COUNT(EmployeeID), Department FROM Employees GROUP BY Department
GROUP Employees BY Department WITH COUNT(EmployeeID)
SELECT Department, COUNT(EmployeeID) FROM Employees GROUP BY EmployeeID
SELECT Department FROM Employees GROUP BY COUNT(EmployeeID)
Next >
13/25
What is the purpose of the 'LIKE' operator in SQL?
To compare a value to similar values using wildcard operators.
To check for exact matches in a column.
To perform mathematical operations.
To limit the number of rows returned in a query.
Next >
14/25
Which SQL statement is used to set a default value for a column?
SET DEFAULT
ALTER TABLE ... SET DEFAULT
MODIFY COLUMN ... DEFAULT
UPDATE COLUMN ... SET DEFAULT
Next >
15/25
How can you combine results from multiple SELECT statements in SQL?
USING UNION
WITH COMBINE
USING UNION ALL
USING JOIN
USING UNION or UNION ALL
Next >
16/25
What is the result of executing a SQL statement that includes a WHERE clause with a non-existent value?
An error message.
All records from the table.
No records (an empty result set).
The first record in the table.
Next >
17/25
How do you perform a LEFT JOIN between 'Employees' and 'Departments' tables on the 'DepartmentID' column?
SELECT * FROM Employees LEFT JOIN Departments ON Employees.DepartmentID = Departments.DepartmentID
JOIN Employees, Departments USING (DepartmentID)
SELECT * FROM Employees, Departments WHERE Employees.DepartmentID = Departments.DepartmentID
SELECT * FROM Employees JOIN Departments ON DepartmentID
Next >
18/25
Which SQL function is used to return the current date and time?
GETDATE()
CURRENT_TIMESTAMP
NOW()
DATETIME()
TIMESTAMP()
Next >
19/25
How do you rename a column 'EmployeeName' to 'FullName' in the 'Employees' table?
ALTER TABLE Employees RENAME COLUMN EmployeeName TO FullName
UPDATE TABLE Employees CHANGE EmployeeName FullName
ALTER TABLE Employees MODIFY COLUMN EmployeeName AS FullName
RENAME COLUMN EmployeeName TO FullName IN Employees
Next >
20/25
Which SQL clause is used to filter the results of a GROUP BY operation?
FILTER BY
HAVING
WHERE
GROUP WHERE
Next >
21/25
How do you delete a table named 'TemporaryData' only if it exists in the database?
DROP TABLE IF EXISTS TemporaryData
DELETE TABLE TemporaryData IF EXISTS
REMOVE TABLE TemporaryData WHEN EXISTS
DROP TABLE TemporaryData ONLY IF EXISTS
Next >
22/25
What is the purpose of the SQL 'WITH' clause?
To provide a temporary name to a table or a set of columns
To define a temporary subquery block that can be used in a SELECT statement
To specify the conditions for a join
To initialize variables within an SQL query
Next >
23/25
How do you find the total number of entries in a table named 'Orders'?
FIND COUNT(*) FROM Orders
SELECT COUNT(*) FROM Orders
COUNT ALL FROM Orders
TOTAL COUNT(*) IN Orders
Next >
24/25
Which of the following is a valid type of SQL join?
CROSS JOIN
REVERSE JOIN
OUTER JOIN
LINK JOIN
RIGHT JOIN
Next >
25/25
What is the function of the 'HAVING' clause in SQL?
To specify a search condition for a group or an aggregate function used in SELECT statement
To filter records before the GROUP BY clause
To join multiple tables based on a condition
To specify the order of records
Next >
To get the result of the quiz, please provide your email address (optional)..
Get Certificate
It seems you haven't answered any questions yet. Please provide your answers to proceed.