Please enter your details here.
What is the main language of Transact-SQL?
What is the SQL query used to retrieve all the data from the customer table?
To Create a new database __________ Command is used
Which of the following is a valid SQL type?
Which file type is used for database backup?
The SQL WHERE clause used for
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
What is the significance of “ORDER BY” in the following MySQL statement?
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
You can delete a view with _____________ Command.
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?
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
Find all the cities whose humidity is 89
What is the significance of the statement of the below query?
What is the significance of the statement “GROUP BY d.name” 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;
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
Which of the following query is correct for selecting the name of the staff from ''staffinfo'' table where salary is 10000 or 25000?
Which one is not used in SQL?
Which syntax is used for Drop Index (idx_pname) from the Person table 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''?
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 a correct query or not?
Which SQL keyword is used to sort the result-set?
Which SQL Query is used for updating the ContactName in the Customers table?
What can be the condition in the "WHERE" clause in a SQL query?
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.
Find the names of the countries whose condition is sunny
Syntax for create a views is _______
Can you validate the statement?
An ORDER BY can be used in a subquery.
True or False?
Which of the following clause is mandatorily used in a sub-query?
What is "Subquery"?
Which of the following is true about sub-queries?
A subquery can be used anywhere an expression is allowed.
Student (ID, Name, Dept_name, Total_credit)
In this above query which attribute form the Primary Key?
How many Primary Keys can have in a table?
A column with a Unique key has duplicate values.
Which one of the following is a set of one or more attributes taken collectively to uniquely identify a record?
Which of the following do you need to consider when you make a table in SQL?
Alias is used in Joins.
List all orders, showing order number, customer name and credit limit of a customer.
Which of the below query satisfy the above question?
Analyze the following tables and output and choose the correct query to achieve the output.
How many tables may include with a join?
What is the syntax for joining two tables? Pick Two
What are the joins available in SQL?
Where are Joins used?
Statement: Join for each row of one table to every row of another table.
Which Join?
Which of the following is incorrect SQL?
Use below table (Salesemployee) and answer the following question
What is the output of the following query?
In SQL - these functions - AVG, MIN, MAX, COUNT are called as ___________
“COUNT” keyword belongs to which categories in MySQL?
Which SQL keyword is used to retrieve the highest value?