How to get max 100 values from sql server

Answers were Sorted based on User's Feedback



How to get max 100 values from sql server..

Answer / rekha

select top 100 (field name)from table name order by (field
name) desc

Is This Answer Correct ?    14 Yes 6 No

How to get max 100 values from sql server..

Answer / zulfikar ali

SELECT TOP 100 FIELD_NAME
FROM TABLE_NAME
ORDER BY FIELD_NAME DESC

Is This Answer Correct ?    9 Yes 1 No

How to get max 100 values from sql server..

Answer / veeresh kethari

set rowcount 100
select * from tablename

Is This Answer Correct ?    4 Yes 3 No

How to get max 100 values from sql server..

Answer / veeresh kethari

SET ROWCOUNT 100

SELECT * FROM TABLENAME

Is This Answer Correct ?    2 Yes 3 No

How to get max 100 values from sql server..

Answer / karthi

select top 100 fieldname from tablename

Is This Answer Correct ?    1 Yes 5 No

How to get max 100 values from sql server..

Answer / ashis dey

select top 100 fieldname from tablename group by fieldname

Is This Answer Correct ?    0 Yes 4 No

How to get max 100 values from sql server..

Answer / vikas

select top 100 max(field name) from Table Name

Is This Answer Correct ?    12 Yes 17 No

Post New Answer

More SQL Server Interview Questions

Where does the copy job runs in the log shipping primary or secondary? : sql server database administration

0 Answers  


hi i am working as a testengineer , so i want to no the backend data base connection can any one tell mwe in detail

0 Answers   IntraLogic, Oracle,


What is full form of XP ?

42 Answers   Cap Gemini, Infosys, Microsoft, Oracle, Reliance,


What is 'Join' and explain its various types.

0 Answers   Genpact,


How can sql server instances be hidden? : sql server security

0 Answers  






How to restart SQL Server in single user mode? How to start SQL Server in minimal configuration mode?

2 Answers  


what are the basic functions for master, msdb, model, tempdb and resource system databases? : sql server database administration

0 Answers  


What is the primary use of the model database?

0 Answers  


Explain what is scheduled job and how to create it?

0 Answers  


What is row_number()?

0 Answers  


What do you mean by 'normalization'?

0 Answers   Ernst Young, Thomson Reuters,


What stored by the model?

0 Answers  


Categories