SQL Easy Test

SQL Easy Test

10th Grade

20 Qs

quiz-placeholder

Similar activities

Web-based Development

Web-based Development

5th Grade - University

15 Qs

2TR - SQL - Ozujak, travanj

2TR - SQL - Ozujak, travanj

10th Grade

21 Qs

Arithmetic Types Declare Initialize Relation Logical Ops

Arithmetic Types Declare Initialize Relation Logical Ops

9th Grade - University

16 Qs

Database Development

Database Development

10th Grade

25 Qs

National 5 Computing Science Prelim Revision

National 5 Computing Science Prelim Revision

9th - 12th Grade

16 Qs

SQL DDL

SQL DDL

9th - 12th Grade

15 Qs

โปรแกรมฐานข้อมูล

โปรแกรมฐานข้อมูล

10th Grade

17 Qs

AV1/R1 3TEC_Banco de Dados - Chave Primária

AV1/R1 3TEC_Banco de Dados - Chave Primária

1st Grade - University

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?