Quiz Summary
0 of 25 Questions completed
Questions:
Information
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
Results
Results
Your time:
Time has elapsed
Categories
- Not categorized 0%
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- Current
- Review
- Answered
- Correct
- Incorrect
-
Question 1 of 25
1. Question
What does SQL stand for?
-
Question 2 of 25
2. Question
Which SQL statement is used to extract data from a database?
-
Question 3 of 25
3. Question
Which SQL statement is used to update data in a database?
-
Question 4 of 25
4. Question
Which SQL statement is used to delete data from a database?
-
Question 5 of 25
5. Question
Which SQL statement is used to insert new data in a database?
-
Question 6 of 25
6. Question
With SQL, how do you select a column named “FirstName” from a table named “Persons”?
-
Question 7 of 25
7. Question
With SQL, how do you select all the columns from a table named “Persons”?
-
Question 8 of 25
8. Question
With SQL, how do you select all the records from a table named “Persons” where the value of the column “FirstName” is “Peter”?
-
Question 9 of 25
9. Question
With SQL, how do you select all the records from a table named “Persons” where the value of the column “FirstName” starts with an “a”?
-
Question 10 of 25
10. Question
The OR operator displays a record if ANY conditions listed are true. The AND operator displays a record if ALL of the conditions listed are true
-
Question 11 of 25
11. Question
With SQL, how do you select all the records from a table named “Persons” where the “FirstName” is “Peter” and the “LastName” is “Jackson”?
-
Question 12 of 25
12. Question
With SQL, how do you select all the records from a table named “Persons” where the “LastName” is alphabetically between (and including) “Hansen” and “Pettersen”?
-
Question 13 of 25
13. Question
Which SQL statement is used to return only different values?
-
Question 14 of 25
14. Question
Which SQL keyword is used to sort the result-set?
-
Question 15 of 25
15. Question
With SQL, how can you return all the records from a table named “Persons” sorted descending by “FirstName”?
-
Question 16 of 25
16. Question
With SQL, how can you insert a new record into the “Persons” table?
-
Question 17 of 25
17. Question
With SQL, how can you insert “Olsen” as the “LastName” in the “Persons” table?
-
Question 18 of 25
18. Question
How can you change “Hansen” into “Nilsen” in the “LastName” column in the Persons table?
-
Question 19 of 25
19. Question
With SQL, how can you delete the records where the “FirstName” is “Peter” in the Persons Table?
-
Question 20 of 25
20. Question
With SQL, how can you return the number of records in the “Persons” table?
-
Question 21 of 25
21. Question
What is the most common type of join?
-
Question 22 of 25
22. Question
Which operator is used to select values within a range?
-
Question 23 of 25
23. Question
The NOT NULL constraint enforces a column to not accept NULL values.
-
Question 24 of 25
24. Question
Which operator is used to search for a specified pattern in a column?
-
Question 25 of 25
25. Question
Which SQL statement is used to create a database table called ‘Customers’?