Please enter your details here.
What is the full form of SQL?
In SQL, which command is used to change a table's storage characteristics?
Which one is a non-relational database?
Which of the following is not a database object?
What does a DML Stand for?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
Find all the cities whose humidity is 89
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
Which one is not used in SQL?
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 “ORDER BY” in the following MySQL statement?
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;
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
Which of the SQL statement is correct?
Which SQL keyword is used to sort the result-set?
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
The HAVING clause does which of the following?
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.
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
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?
Which command is used to change the definition of a table in SQL ?
Which of the following query is correct for selecting the name of the staff from ''staffinfo'' table where salary is 10000 or 25000?
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
Syntax for create a views is _______
What is the meaning of the “HAVING” clause in MySQL?
The SQL WHERE clause used for
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 statement(s) is TRUE regarding subqueries?
A subquery can be used anywhere an expression is allowed.
A subquery in an SQL SELECT statement is enclosed in
A column with a Primary key has a Null value.
Which of the following is not a Key in SQL Server?
Student (ID, Name, Dept_name, Total_credit)
In this above query which attribute form the Primary Key?
A column with a Unique key has duplicate values.
How many types of indexes are there in the SQL server?
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
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?
What is the function of Full Outer Join in SQL?
Choose the query that matches the above image.
Which type of join is not desirable for retrieval?
In which two cases would you use an outer join? (Choose two.)
Which of the following is incorrect SQL?
The SQL Statement
SELECT ROUND(45.926, -1) FROM DUAL;
“COUNT” keyword belongs to which categories in MySQL?
Use below table (Salesemployee) and answer the following question
What is the output of the following query?
What values does the count(*) function ignore?