1. SELECT SUM(sal) as “Gross Salary” from EMPLOYEES;
2. SELECT MAX(sal) as “Highest Salary” from EMPLOYEES;
ouput should be in table format
Answers were Sorted based on User's Feedback
Answer / aparna sanas
true Output will come in table format in single row and single
column
| Is This Answer Correct ? | 10 Yes | 6 No |
Answer / sandeep modapathi
select sum(Gross_Salary),sum(Highest_Salary) from (
SELECT SUM(Salary) as Gross_Salary,0 as Highest_Salary from
EmpSalaryDetails
UNION
SELECT 0,MAX(Salary) from dbo.EmpSalaryDetails
) as rowset
| Is This Answer Correct ? | 5 Yes | 1 No |
What are views in ms sql server?
When would you use it?
How to rename an existing column with sql server management studio?
Can you explain the disadvantages/limitation of the cursor?
How can you append an identity column to a temporary table?
How can we solve concurrency problems?
What is built-in function?
How display code or Text of Stored Procedure using Sql query in Sql Server ?
How to get the definition of a user defined function back?
Do you know what is difference between index seek vs. Index scan?
Can you force a query to use a specific index?
How to list all login names on the ms sql server?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)