Please enter your details here.
What is the main language of Transact-SQL?
Which is the subset of SQL command used to manipulate Database structures, including tables?
What is the SQL query used to retrieve all the data from the customer table?
What is the meaning of a Database?
To Create a new database __________ Command is used
Analyze the following Query and Mark the answer whether it's the correct query or not ?
What is the significance of “ORDER BY” in the following MySQL statement?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
Analyze the following Query and Mark the answer whether it's a correct query or not?
What is the significance of the statement of the below query?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
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 ?
Which SQL keyword is used to sort the result-set?
What is the meaning of the “ORDER BY” clause in MySQL?
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
Which of the SQL statement is correct?
Identify the average salary of the jobs 'MANAGER' and 'ANALYST'. Display job, average salary if the identified average salary is more than 1500.
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
Find all the cities whose humidity is 89
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
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?
Select two options which do not belong to the Purpose of Delete
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?
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
The SQL WHERE clause used for
The HAVING clause does which of the following?
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''?
Syntax for create a views is _______
A subquery can be used anywhere an expression is allowed.
What is "Subquery"?
An ORDER BY can be used in a subquery.
Which of the following is true about sub-queries?
Which of the following statement(s) is TRUE regarding subqueries?
Which key accepts multiple NULL values?
A column with a Primary key has a Null value.
A table contains more than one foreign key
Student (ID, Name, Dept_name, Total_credit)
In this above query which attribute form the Primary Key?
We can use the index on columns that contain a high number of NULL values.
Choose the correct query for the below scenario.
In which two cases would you use an outer join? (Choose two.)
Alias is used in Joins.
Analyze the following tables and output and choose the correct query to achieve the output.
What is the syntax for joining two tables? Pick Two
Join is different from Inner join.
Choose the query that matches the above image.
Where are Joins used?
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 _______.
Which of the following is incorrect SQL?
Which SQL keyword is used to retrieve a maximum value?
Use below table (Salesemployee) and answer the following question
What is the output of the following query?