Please enter your details here.
The result of a SQL SELECT statement is a ______.
What is the main language of Transact-SQL?
In SQL, which command is used to change a table's storage characteristics?
What is the meaning of a Database?
SQL can be used to
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 ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
What is the meaning of the “ORDER BY” clause in MySQL?
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
Which SQL Query is used for updating the ContactName in the Customers table?
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
Select two options which do not belong to the Purpose of Delete
Which of the following query is correct for selecting the name of the staff from ''staffinfo'' table where salary is 10000 or 25000?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
Which command is used to change the definition of a table in SQL ?
What can be the condition in the "WHERE" clause in a SQL query?
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
Analyse the following Query and Mark the answer whether it's the correct query or not?
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''?
Which of the SQL statement is correct?
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?
What is the meaning of the “HAVING” clause in MySQL?
The SQL WHERE clause used for
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
You can delete a view with _____________ Command.
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
Which of the following statement(s) is TRUE regarding subqueries?
What is "Subquery"?
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
We can use the index on columns that contain a high number of NULL values.
Which one of the following can be taken as a Primary Key?
A column with a Unique key has duplicate values.
A ______ index is created based on only one table column.
Which of the following do you need to consider when you make a table in SQL?
Analyze the following tables and output and choose the correct query to achieve the output.
List all orders, showing order number, customer name and credit limit of a customer.
Which of the below query satisfy the above question?
What is the function of Full Outer Join in SQL?
What are the joins available in SQL?
Below image depicts:
Evaluate this SQL statement:
Which SQL statement is equivalent to the above SQL statement?
Alias is used in Joins.
In the absence of WHERE condition this JOIN will function like a _______.
The SQL Statement
SELECT ROUND(45.926, -1) FROM DUAL;
In SQL - these functions - AVG, MIN, MAX, COUNT are called as ___________