Detail Form
We will send your result on your email id and phone no. please fill detail
In an SQL Server, consider the toys table which has the following columns:
|ToyID|vToyName|CategoryID| | :-: | :-: | :-: |
Consider the category table which consists of the following columns:
CategoryID | cCategory |
---|
Which of the following displays the list of all the toy names that belong to the category Stuffed Toys
?
Consider the table Shipment which consists of the following columns:
cOrderNo | OrderName | dShipmentDate |
---|
In SQL Server, which of the following queries is used to retrieve the Order Name, Shipment Date, Actual Delivery Date, and Days in Transit for every order?
A schedule for interviews is required with the following information that has to be printed in alphabetical order of candidates name
Candidate Name
Interviewer
Date
Week Day
Consider the Toys table which has the following columns:
ToyID | vToyName | mToyRate |
---|
In an SQL Server, which of the following queries is used to select the following:
In an SQL Server, which of the following queries will you use to get the list of all the employees working in any department along with all those who are not assigned to any department?
EMP_ID | User_name | F_Name | L_name | Dep_ID |
1 | AAlice | Alice | Smith | 1 |
2 | BBob | Bob | Jones | 1 |
3 | BBen | Ben | Johnson | 2 |
4 | MMike | Mike | White | 2 |
5 | AAnita | Anita | Williams | 3 |
6 | LLisa | Lisa | Davis | 3 |
7 | MMary | Mary | Brown | 4 |
8 | JJohn | John | Wilson | 4 |
Dep_ID | Dep_name |
1 | Technical Innovations |
2 | Technical Support |
3 | Operations |
4 | Customer Delight |
In an SQL Server, triggers can be nested up to___________ levels in SQL.
In an SQL Server, you have to create a table called Employee2017. A user-defined datatype called typemployeecode needs to be created for the cEmployeeID attribute of the Employee2017 table.
Which of the following actions will you take to use the datatype in the Employee2017 table?