SQL Easy Test

SQL Easy Test

10th Grade

20 Qs

quiz-placeholder

Similar activities

3. TEC BANCO DE DADOS_QL Multiple Choice Questions

3. TEC BANCO DE DADOS_QL Multiple Choice Questions

3rd Grade - University

21 Qs

PHP + MySQL

PHP + MySQL

7th Grade - University

25 Qs

Databases

Databases

10th Grade - University

15 Qs

A-Level Comp Sci 9618 Databases

A-Level Comp Sci 9618 Databases

9th - 12th Grade

15 Qs

ASK T3 4.1.7 Penggunaan Pernyataan SQL

ASK T3 4.1.7 Penggunaan Pernyataan SQL

9th - 11th Grade

22 Qs

Key Applications 1

Key Applications 1

9th - 12th Grade

20 Qs

PERNYATAAN SQL

PERNYATAAN SQL

1st - 12th Grade

22 Qs

PHP SQL 10

PHP SQL 10

10th Grade

15 Qs

SQL Easy Test

SQL Easy Test

Assessment

Quiz

Computers

10th Grade

Hard

Created by

VIKAS BANDARU

Used 1+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which SQL keyword is used to retrieve data from a table?
GET
FETCH
SELECT
TAKE
READ

Answer explanation

`SELECT` is the standard SQL keyword for retrieving data.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct syntax to rename a column in the result set?
SELECT name RENAME full_name FROM students;
SELECT name AS full_name FROM students;
SELECT name TO full_name FROM students;
SELECT full_name = name FROM students;
SELECT name IS full_name FROM students;

Answer explanation

`AS` is used to provide an alias for a column.

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following is correct to delete all rows from the table `orders`?
DELETE ALL FROM orders;
REMOVE * FROM orders;
DELETE FROM orders;
CLEAR TABLE orders;
DROP ALL FROM orders;

Answer explanation

`DELETE FROM table_name;` removes all rows but keeps the table structure.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Identify the syntax error: `SELECT id name FROM employees;`
Missing semicolon
FROM must come before SELECT
Missing comma between column names
AS keyword required
Incorrect table name

Answer explanation

Multiple columns in SELECT must be separated by commas.

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What will this query return? `SELECT UPPER('sql');`
sql
SQL
Sql
'SQL'
Error

Answer explanation

`UPPER()` converts the string to uppercase, returning `SQL`.

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which statement creates a new table named `books` with two columns: id (INT) and title (VARCHAR)?
CREATE TABLE books (id INT, title VARCHAR(100));
CREATE books TABLE (id INTEGER, title STRING(100));
NEW TABLE books (id INT, title VARCHAR(100));
MAKE TABLE books (id INT, title VARCHAR(100));
CREATE TABLE books (id NUMBER, title TEXT(100));

Answer explanation

Correct SQL syntax uses `CREATE TABLE` followed by column definitions.

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which SQL keyword is used to sort the result set?
SORT BY
ORDER
ARRANGE BY
ORDER BY
SORT

Answer explanation

`ORDER BY` is the SQL keyword for sorting.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?