RDBMS Quiz 1
RDBMS Quiz 1
Quiz - 1
What is MySQL?
Developed, distributed and supported by OracleCorp
Insert
Update
Modify
Which MySQL statement is used to
delete data from a database?
Remove
Delete
Collapse
Which MySQL statement is used to
select data from a database?
Select
Open
Get
Extract
Which MYSQL statement is used to
insert new data in a database?
Insert new
Add record
Add new
Insert into
With MySQL, how do you select a column named
"FirstName" from a table named "Persons"?
Select Persons.FirstName
With MySQL, how do you select all the
columns from a table named "Persons"?
Select * .Persons
Select Persons
False
True
With MySQL, how do you select all the records from a table named
"Persons" where the "FirstName" is "Peter" and the "LastName" is
"Jackson"?
Select different
Select distinct
Select unique
Which MySQL keyword is used to sort the result-set?
Order by
Sort
Sort by
order
With MySQL, how can you return all the records from a
table named "Persons" sorted descending by "FirstName"?
False
True