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
Explain index in sql server?
What is TDS(Tabular Data Stream) Gateway?
How do clustered indexes store data?
how do you implement one-to-one, one-to-many and many-to-many relationships while designing tables? : Sql server database administration
where the connection string store in the database
Do you know what is openxml in sql server?
How will you find out if there are expensive SQL statements running or not?
How do I view views in sql server?
Explain the advantages of merge replication?
What is the Control Flow in SSIS
Where does the copy job runs in the log shipping primary or secondary? : sql server database administration
Define Joins?
Explain log shipping?
What is the optimal disk configuration for a database server and what raid configurations would you use if budget is not a constraint?
What is global temp table?