Vidyalelo
MySQL · Q1149

MySQL

Programming · MySQL · question 1149

Q1149

Which keyword is the synonym for DATABASE?

A.
TABLE
B.
OBJECT
C.
DB
D.
SCHEMA
Answer

Answer: Option D

Solution

Answer: Option D
Solution:
This question asks you about a shorter way to write "DATABASE" in MySQL.
Think of it like a nickname!
We can use a shorter word instead of the full word.
Out of the options given:
Option C: DB is the synonym for DATABASE in MySQL.
So, you can use DB whenever you see the word DATABASE in MySQL commands.
For example, instead of saying "CREATE DATABASE mydatabase" you can say "CREATE DB mydatabase".
It's like saying "Hey, let's go to the DB" instead of "Hey, let's go to the DATABASE".
It's the same thing, just shorter!
Let me know if you have any more questions. 😊