Please enter your details here.
To delete the database __________ Command is used
What is the SQL query used to retrieve all the data from the customer table?
To Create a new database __________ Command is used
Which of the following database cannot be dropped?
Which one is a non-relational database?
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 “GROUP BY d.name” in the following MySQL statement?
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
Which SQL keyword is used to sort the result-set?
Which of the SQL statement is correct?
What is the meaning of the “ORDER BY” clause in MySQL?
Which one is not used in SQL?
Which SQL Query is used for updating the ContactName in the Customers table?
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
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?
What is the significance of the statement of the below query?
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
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?
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
Which of the following query is correct for selecting the name of the staff from ''staffinfo'' table where salary is 10000 or 25000?
You need to find out the names of all employees who belong to the same department as the employee 'Jessica Butcher' who is in department 100 and has an employee ID 40. Which of the following queries will be correct?
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
The SQL WHERE clause used for
What can be the condition in the "WHERE" clause in a SQL query?
You can delete a view with _____________ Command.
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
Which command is used to change the definition of a table in SQL ?
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
Which of the following multi-row operators can be used with a sub-query?
An ORDER BY can be used in a subquery.
Which of the following operators cannot be used in a sub-query?
Which of the following statement(s) is TRUE regarding subqueries?
A subquery can be used anywhere an expression is allowed.
A column with a Primary key has a Null value.
A Key which is a set of one or more columns that can identify a record uniquely is called?
A table contains more than one foreign key
By default, which key creates Clustered index?
A column with a Unique key has duplicate values.
Which type of join is not desirable for retrieval?
How many tables may include with a join?
List all orders, showing order number, customer name and credit limit of a customer.
Which of the below query satisfy the above question?
Alias is used in Joins.
Analyze the following tables and output and choose the correct query to achieve the output.
In which two cases would you use an outer join? (Choose two.)
What is the syntax for joining two tables? Pick Two
Below image depicts:
Choose the correct query for the below scenario.
Which among the following belongs to an “aggregate function”?
Which of the following is incorrect SQL?
Which of the following do you need to consider when you make a table in SQL?
Which SQL keyword is used to retrieve the highest value?
The _____ aggregation operation adds up all the values of the attribute