1.Select no of Months between two dates:
2. What will be theoutput of following script
dbo.t1
INTO dbo.t1
INTO dbo.t1
id
3. Create a querythat display the Emp name and indicate the amounts of their annual salaries
with asterisks. Each asterisk signifies a thousand rupees. Sort the data in
descending order of salary. As for example if Emp name sonu have salary 11000.
Then output should be Sonu***********.
Employee_and_salary ,salary from Employee order by salary desc;
11000
10000
10000
9000