how to find the particular row in table?(means suppose one
table contain 10 rows , in these 10 rows how to find the
particular row(example in 10 rows i want 5 row how)?
Answer Posted / vamsi krishna
select * from <table name> order by <column name> limit 0,5;
or
select * from <table name> limit 0,5;
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
how many bits ip address consist of? : Sql server database administration
Any one plz send me SQL Server Developer/DBA resume for 4 years experience
you have developed an application which uses many stored procedures and triggers to update various tables users ocassionally get locking problems which tool is best suited to help you diagnose the problem? : Sql server administration
How to replace null values in expressions using isnull()?
What is the syntax to execute the sys.dm_db_missing_index_details? : sql server database administration
How to fetch the next row from a cursor with a "fetch" statement?
what are the different types of SSRS reports?
How to drop an existing table?
What happens if null values are involved in arithmetic operations?
Where cross join is used?
What is sql server replication? : sql server replication
What are the acid properties?
Will sql server 2005 allow you to reduce the size of a column?
What is a collation?
Introduction of rollup clause using sum and group by clause?