Please enter your details here.
The result of a SQL SELECT statement is a ______.
What is the main language of Transact-SQL?
Which is the subset of SQL command used to manipulate Database structures, including tables?
Which of the following database cannot be dropped?
Which one is not part of the Database backup file?
What is the significance of “ORDER BY” in the following MySQL statement?
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?
Analyze the following Query and Mark the answer whether it's a correct query or not?
Analyse the following Query and Mark the answer whether it's the correct query or not?
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
Which of the SQL statement is correct?
Syntax for create a views is _______
What is the meaning of the “HAVING” clause in MySQL?
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''?
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
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 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?
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?
Identify the average salary of the jobs 'MANAGER' and 'ANALYST'. Display job, average salary if the identified average salary is more than 1500.
The SQL WHERE clause used for
What is the significance of the statement of the below query?
Which SQL keyword is used to sort the result-set?
You can delete a view with _____________ Command.
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
Find all the cities whose humidity is 89
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 of the following is true about sub-queries?
Can you validate the statement?
An ORDER BY can be used in a subquery.
True or False?
A subquery in an SQL SELECT statement is enclosed in
A subquery can be used anywhere an expression is allowed.
Which of the following clause is mandatorily used in a sub-query?
Which of the following do you need to consider when you make a table in SQL?
Which key accepts multiple NULL values?
Which of the following is correct DROP INDEX Command?
How many types of indexes are there in the SQL server?
A table contains more than one foreign key
Analyze the following tables and output and choose the correct query to achieve the output.
Choose the correct query for the below scenario.
What is the function of Full Outer Join in SQL?
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?
How many tables may include with a join?
Alias is used in Joins.
What values does the count(*) function ignore?
The _____ aggregation operation adds up all the values of the attribute
Use below table (Salesemployee) and answer the following question
What is the output of the following query?
Which among the following belongs to an “aggregate function”?
Which SQL keyword is used to retrieve a maximum value?
“COUNT” keyword belongs to which categories in MySQL?