2.3f

studied byStudied by 0 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 6

encourage image

There's no tags or description

Looks like no one added any tags here yet for you.

7 Terms

1

What command is used to create a new database in a database management system?

CREATE DATABASE Database_name

New cards
2

What command removes a database from the system?

DROP DATABASE Database_name

New cards
3

What does the USE Database_name command do?

Selects a default database for use in subsequent statements.

New cards
4

What does the SHOW DATABASES command do?

Lists all databases in the database system instance.

New cards
5

What command would you use to see all tables in the default database?

SHOW TABLES

New cards
6

What is the purpose of the SHOW COLUMNS FROM Table_Name command?

Lists all columns in the specified table of the default database.

New cards
7

What does the SHOW CREATE TABLE Table_Name command display?

Shows the CREATE TABLE statement for the specified table in the default database.

New cards
robot