Please enter your details here.
Which is the subset of SQL command used to manipulate Database structures, including tables?
What does a DML Stand for?
Which of the following database cannot be dropped?
What is the main language of Transact-SQL?
What is the SQL query used to retrieve all the data from the customer table?
What is the meaning of the “HAVING” clause in MySQL?
What is the meaning of the “ORDER BY” clause in MySQL?
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 ?
You can delete a view with _____________ Command.
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
What is the significance of “ORDER BY” in the following MySQL statement?
Which SQL keyword is used to sort the result-set?
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
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;
Select two options which do not belong to the Purpose of Delete
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?
Which one is not used in SQL?
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
What is the significance of the statement of the below query?
Syntax for create a views is _______
Which command is used to change the definition of a table in SQL ?
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
Analyze the following Query and Mark the answer whether it's a correct query or not?
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
The SQL WHERE clause used for
The HAVING clause does which of the following?
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
Which of the following statement(s) is TRUE regarding subqueries?
Which of the following is true about sub-queries?
Which of the following statements are TRUE regarding subqueries?
Can you validate the statement?
A subquery can be used anywhere an expression is allowed.
True or False?
A subquery in an SQL SELECT statement is enclosed in
Student (ID, Name, Dept_name, Total_credit)
In this above query which attribute form the Primary Key?
A column with a Primary key has a Null value.
Which key accepts multiple NULL values?
How many types of indexes are there in the SQL server?
How many Primary Keys can have in a table?
Statement: Join for each row of one table to every row of another table.
Which Join?
Alias is used in Joins.
In which two cases would you use an outer join? (Choose two.)
Evaluate this SQL statement:
Which SQL statement is equivalent to the above SQL statement?
In the absence of WHERE condition this JOIN will function like a _______.
What is the syntax for joining two tables? Pick Two
Choose the query that matches the above image.
How many tables may include with a join?
Analyze the following tables and output and choose the correct query to achieve the output.
What values does the count(*) function ignore?
Which SQL keyword is used to retrieve a maximum value?
Which of the following do you need to consider when you make a table in SQL?