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
What do you mean by data integrity?
What are the different types of sql server replication? : sql server replication
What is the difference between stored procedure and functions?
What are different types of subquery?
How to create view in stored procedure sql server?
What are user-defined functions (udfs) in sql server?
What is factless fact table? : sql server analysis services, ssas
What is a cube? : sql server analysis services, ssas
Can we use where clause in union?
How to filter records of table in SQL SERVER?
What are policy management terms?
How you trouble shoot when any job fails
Does an index slow down updates on indexed columns?
What is mapping schema?
Tell me about joins in database system and explain each in detail.