Please enter your details here.
To Create a new database __________ Command is used
Which one is not part of the Database backup file?
In SQL, which command is used to change a table's storage characteristics?
Which file type is used for database backup?
What does a DML Stand for?
What is the significance of “ORDER BY” in the following MySQL statement?
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
Which one is not used in SQL?
What can be the condition in the "WHERE" clause in a SQL query?
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
Which of the SQL statement is correct?
Select two options which do not belong to the Purpose of Delete
With SQL, how do you select all the records from a table named "Persons" where the value of the column "Firstname" ends with an ''a''?
What is the significance of the statement of the below query?
Analyse the following Query and Mark the answer whether it's the correct query or not?
Identify the average salary of the jobs 'MANAGER' and 'ANALYST'. Display job, average salary if the identified average salary is more than 1500.
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
Analyze the following Query and Mark the answer whether it's the correct query or not ?
If emp_id contains the following set {-1, -2, 2, 3, -3, 1}, what will be the output on the execution of the following MySQL statement?
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
Which of the following query is correct for selecting the name of the staff from ''staffinfo'' table where salary is 10000 or 25000?
We can use one table to create another table using the below query. True or False ?
CREATE TABLE TestTable AS
SELECT customername, contactname
FROM customers;
Which SQL keyword is used to sort the result-set?
Select ID, name, dept name, salary * 1.1 where instructor;
The query given below will not give an error. Which one of the following has to be replaced to get the desired output?
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
The HAVING clause does which of the following?
Find the names of the countries whose condition is sunny
Can you validate the statement?
An ORDER BY can be used in a subquery.
True or False?
What is "Subquery"?
A subquery in an SQL SELECT statement is enclosed in
Which of the following operators cannot be used in a sub-query?
Which of the following statement(s) is TRUE regarding subqueries?
A table contains more than one foreign key
A Key which is a set of one or more columns that can identify a record uniquely is called?
Does an Index help to speed up?
A column with a Primary key has a Null value.
Student (ID, Name, Dept_name, Total_credit)
In this above query which attribute form the Primary Key?
Alias is used in Joins.
What are the joins available in SQL?
Evaluate this SQL statement:
Which SQL statement is equivalent to the above SQL statement?
What is the function of Full Outer Join in SQL?
Which type of join is not desirable for retrieval?
Choose the correct query for the below scenario.
Below image depicts:
Where are Joins used?
What is the syntax for joining two tables? Pick Two
List all orders, showing order number, customer name and credit limit of a customer.
Which of the below query satisfy the above question?
Which SQL keyword is used to retrieve a maximum value?
Which SQL keyword is used to retrieve the highest value?
“COUNT” keyword belongs to which categories in MySQL?