Chapter 1-Intro to SQL (Chapter 1-3)

Chapter 1-Intro to SQL (Chapter 1-3)

10th - 12th Grade

10 Qs

quiz-placeholder

Similar activities

MySQL revision tour

MySQL revision tour

11th - 12th Grade

10 Qs

Kuis Basis Data DDL - XI RPL - UKIN

Kuis Basis Data DDL - XI RPL - UKIN

11th Grade

10 Qs

2.1.3 ARAHAN SQL

2.1.3 ARAHAN SQL

1st - 12th Grade

7 Qs

dbms

dbms

11th - 12th Grade

15 Qs

SQL QUIZ

SQL QUIZ

11th Grade

15 Qs

Structured Query Language (SQL)

Structured Query Language (SQL)

12th Grade

11 Qs

Database MySQL - Command Prompt

Database MySQL - Command Prompt

12th Grade

10 Qs

TP3: SQL

TP3: SQL

12th Grade

7 Qs

Chapter 1-Intro to SQL (Chapter 1-3)

Chapter 1-Intro to SQL (Chapter 1-3)

Assessment

Quiz

Computers

10th - 12th Grade

Hard

Created by

Mel PJ

Used 8+ times

FREE Resource

AI

Enhance your content

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following allows you to add Address column with string value up to 50 characters in your EMP table?

ALTER TABLE emp ADD address VARCHAR2(50);

ALTER TABLE emp ADD COLUMN address VARCHAR2(50);

ALTER TABLE emp ADD address VARCHAR2(30);

ALTER TABLE emp DROP COLUMN address;

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which is an example of Data Manipulation Language (DML) command?

CREATE

INSERT

ALTER

DROP

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which is an example of Data Definition Language (DDL) command?

INSERT

DELETE

CREATE

UPDATE

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following will display all the records in EMPLOYEES table?

SELECT salary FROM employees;

SELECT * FROM employees;

SELECT ALL FROM employees;

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which command will execute properly?

INSERT INTO emp (101, 'Melissa', 300);

INSERT INTO emp VALUES (101, Melissa, 300);

INSERT INTO emp VALUES (101, 'Melissa', 300);

INSERT INTO emp VALUES ('101', Melissa, '300');

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which command will execute correctly?

CREATE TABLE emp (ID Number(5), Name Varchar2(25));

CREATE TABLE emp (ID Number(5), Name Varchar(25));

CREATE TABLE emp ID Number(5), Name Varchar2(25);

CREATE TABLE emp (ID Number(5), Name Varchar);

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the result If you will execute the following command: DELETE FROM emp;

The table will be deleted.

All the records will be deleted.

The structure of the table will be displayed.

The statement will not execute.

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?