DDL commands

DDL commands

10th - 12th Grade

7 Qs

quiz-placeholder

Similar activities

Quiz 2-  Levels of Programming Languages 10

Quiz 2- Levels of Programming Languages 10

10th Grade

12 Qs

Tin 12 - Bài 4 - Câu hỏi trắc nghiệm

Tin 12 - Bài 4 - Câu hỏi trắc nghiệm

12th Grade

10 Qs

Бази Даних

Бази Даних

1st - 12th Grade

11 Qs

Latihan Soal PTS Kelas 6 Semester 1

Latihan Soal PTS Kelas 6 Semester 1

10th Grade

10 Qs

BT VÀ TH 2

BT VÀ TH 2

12th Grade

10 Qs

MODULE 9 PRE-TEST

MODULE 9 PRE-TEST

10th Grade

10 Qs

Review Materi Informatika

Review Materi Informatika

1st Grade - University

10 Qs

Internet Application in Education

Internet Application in Education

11th - 12th Grade

10 Qs

DDL commands

DDL commands

Assessment

Quiz

Computers

10th - 12th Grade

Medium

Created by

chetna kachhwaha

Used 48+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The _____ command is used to modify columns in a table

DROP

INSERT

ALTER

CREATE

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To build a new table from scratch, use the _____ command.

INSERT

ALTER

CREATE

DROP

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The _____ command is used to completely remove a table from the database.

INSERT

ALTER

DROP

CREATE

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

This command creates the new MySQL database.

new database database_name

create database database_name

create database_name

create table_name

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Data Definition Language commands are used to modify the _____ of a database.

data

security

users

structure

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these is the best definition of a database?

Columns and rows that contain data in records

Primary and foreign keys that help tables relate to one another

a structured collection of data in tables

A large table of information

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which SQL statement would return ALL records from the artist table?

SELECT *.*

SELECT artistName FROM tblArtist WHERE artistName='Journey'

SELECT * FROM tblArtist

SELECT * FROM tblArtist WHERE artistID = 17