A server query language is designed so that users can retrieve specific information from a database. As a software developer, you should have some knowledge of the use of such languages. Do you believe you understand SQL completely? Take up the quiz below and be sure about it! All the best, and look out for more tests on the topic. See more
specify range for search condition
Specify search condition
Specify what table we are selecting or deleting data from.
Rate this question:
INSERT
SELECT
UPDATE
INVERT
Rate this question:
The SELECT clause only
The DELETE and UPDATE clauses
The UPDATE clause only
None of the other three
Rate this question:
Different Mode Level
Data Model Language
Data Mode Lane
Data Manipulation language
Rate this question:
MOST
MAX
TOP
UPPER
Rate this question:
INSERT INTO Projects (ProjectName, ProjectDescription) VALUES ('Content Development', 'Website content development project')
SAVE INTO Projects (ProjectName, ProjectDescription) VALUES ('Content Development', 'Website content development project')
INSERT Projects VALUES ('Content Development', 'Website content development project')
INSERT Projects ('Content Development', 'Website content development project')
Rate this question:
INSERT INTO
WRITE
SELECT
ENTER
Rate this question:
DELETE
REMOVE
DROP DATA
CLEAR
Rate this question:
SELECT CustomerName, COUNT(CustomerName) FROM Orders
SELECT CustomerName, COUNT(CustomerName) FROM Orders GROUP BY CustomerName
SELECT CustomerName, COUNT(CustomerName) FROM Orders ORDER BY CustomerName
Rate this question:
Strong Question Language
Structured Query Language
Structured Question Language
Rate this question:
SELECT
GET
OPEN
EXTRACT
Rate this question:
SAVE
SAVE AS
MODIFY
UPDATE
Rate this question:
SELECT Persons.FirstName
SELECT FirstName FROM Persons
EXTRACT FirstName FROM Persons
Rate this question:
SELECT *.Persons
SELECT [all] FROM Persons
SELECT * FROM Persons
SELECT Persons
Rate this question:
SELECT * FROM Persons WHERE FirstName'Peter'
SELECT [all] FROM Persons WHERE FirstName LIKE 'Peter'
SELECT * FROM Persons WHERE FirstName='Peter'
SELECT [all] FROM Persons WHERE FirstName='Peter'
Rate this question:
SELECT * FROM Persons WHERE FirstName='a'
SELECT * FROM Persons WHERE FirstName LIKE 'a%'
SELECT * FROM Persons WHERE FirstName LIKE '%a'
SELECT * FROM Persons WHERE FirstName='%a%'
Rate this question:
False
True
Rate this question:
SELECT * FROM Persons WHERE FirstName='Peter' AND LastName='Jackson'
SELECT FirstName='Peter', LastName='Jackson' FROM Persons
SELECT * FROM Persons WHERE FirstName'Peter' AND LastName'Jackson'
Rate this question:
SELECT * FROM Persons WHERE LastName BETWEEN 'Hansen' AND 'Pettersen'
SELECT * FROM Persons WHERE LastName>'Hansen' AND LastName
SELECT LastName>'Hansen' AND LastName
Rate this question:
SELECT DISTINCT
SELECT DIFFERENT
SELECT UNIQUE
Rate this question:
ORDER BY
SORT
ORDER
SORT BY
Rate this question:
SELECT * FROM Persons SORT BY 'FirstName' DESC
SELECT * FROM Persons ORDER FirstName DESC
SELECT * FROM Persons SORT 'FirstName' DESC
SELECT * FROM Persons ORDER BY FirstName DESC
Rate this question:
INSERT INTO Persons VALUES ('Jimmy', 'Jackson')
INSERT VALUES ('Jimmy', 'Jackson') INTO Persons
INSERT ('Jimmy', 'Jackson') INTO Persons
Rate this question:
UPDATE Persons SET LastName='Hansen' INTO LastName='Nilsen'
MODIFY Persons SET LastName='Nilsen' WHERE LastName='Hansen'
MODIFY Persons SET LastName='Hansen' INTO LastName='Nilsen
UPDATE Persons SET LastName='Nilsen' WHERE LastName='Hansen'
Rate this question:
DELETE FROM Persons WHERE FirstName = 'Peter'
DELETE ROW FirstName='Peter' FROM Persons
DELETE FirstName='Peter' FROM Persons
Rate this question:
SELECT COUNT() FROM Persons
SELECT COLUMNS() FROM Persons
SELECT COLUMNS(*) FROM Persons
SELECT COUNT(*) FROM Persons
Rate this question:
ASC
DESC
There is no default value.
Rate this question:
No
Yes
Rate this question:
SELECT Username, Password FROM Users
SELECT Username AND Password FROM Users
SELECT Username, Password WHERE Username = 'user1'
Rate this question:
Cursor is acronym for Current Set Of Records and is a database object pointing to a currently selected set of records.
A cursor is SQL keyword specifying a retrieved data order.
A blinking vertical line that indicates the location of the next input on the display screen.
Rate this question:
Definition of the condition to be met for the rows to be returned.
A list of columns to be selected.
The name of the table we are selecting from.
Rate this question:
The SQL ALTER TABLE clause modifies a table definition by altering, adding, or deleting table columns and/or constraints.
The SQL ALTER TABLE clause is used to insert data into database table.
THE SQL ALTER TABLE deletes data from database table.
The SQL ALTER TABLE clause is used to delete a database table.
Rate this question:
The WHERE and the HAVING clauses are identical
The HAVING SQL clause condition(s) is applied to all rows in the result set before the WHERE clause is applied (if present). The WHERE clause is used only with SELECT SQL statements and specifies a search condition for an aggregate or a group.
The WHERE SQL clause condition(s) is applied to all rows in the result set before the HAVING clause is applied (if present). The HAVING clause is used only with SELECT SQL statements and specifies a search condition for an aggregate or a group.
Rate this question:
The AS SQL clause is used change the name of a column in the result set or to assign a name to a derived column.
The AS clause is used with the JOIN clause only.
The AS clause defines a search condition.
Rate this question:
Yes.
No.
Rate this question:
Is used with the DISTINCT SQL keyword only.
Determines if a value matches any of the values in a list or a sub-query.
Defines the tables we are selecting or deleting data from
Rate this question:
Update only one row at a time.
Update more than one row at a time.
Delete more than one row at a time.
Delete only one row at a time..
Rate this question:
The TRUNCATE clause deletes all rows in a database table, while the DELETE clause can have a WHERE condition and might or might not delete all rows in a table.
The DELETE clause deletes all rows in a database table, while the TRUNCATE clause can have a WHERE condition and might or might not delete all rows in a table.
The TRUNCATE clause is identical to the DELETE clause
Rate this question:
WHERE clause.
GROUP BY clause.
ORDER BY clause.
JOIN clause.
Rate this question:
SELECT ADD(Price) FROM Sales
SELECT SUM(Price) FROM Sales
SELECT TOTAL(Price) FROM Sales
SELECT SUM(Price) WHERE Sales
Rate this question:
SELECT AVG(OrderNumber) FROM Sales
SELECT COUNT(*) FROM Sales
SELECT SUM(OrderNumber) FROM Sales
Rate this question:
Quiz Review Timeline (Updated): Mar 22, 2023 +
Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.
Wait!
Here's an interesting quiz for you.