Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

Can two different columns be merged into single column? Show practically?

0 Answers   QuestPond,


What are sparse columns?

0 Answers  


Difference between: - Delete & Truncate - Table & View - Constraints & Triggers

1 Answers   United Healthcare,


What is the difference between login and a user?

13 Answers   CTS, TCS,


What are the different types of collation sensitivity?

0 Answers  


How can i give the restrictions for the data entry, if i wish to enter only I ,II, III, IV in the grade actegory of student table?

3 Answers  


Equi join and non equi join is possible with sql server?

0 Answers  


What are the steps you should follow to start sql server in single-user mode?

0 Answers  


Mention the different types of replication in sql server.

0 Answers  


What are the main differences between #temp tables and @table variables and which one is preferred?

0 Answers  


Is sql server a database?

0 Answers  


let's assume you have data that resides on sql server 6.5. You have to move it sql server 7.0. How are you going to do it? : Sql server database administration

0 Answers  


Categories