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 is logon trigger?
You want to check the syntax of a complicated update sql statement without executing it. What command should you use?
explain different levels of normalization? : Sql server database administration
What do you mean by an execution plan? Why is it used?
Explain what is lock escalation and what is its purpose?
How to sort query output in descending order in ms sql server?
Where are full-text indexes stored?
Mention what are the different types of ssrs reports?
How to get a list of table columns using the "sp_columns" stored procedure in ms sql server?
What is factless fact table? : sql server analysis services, ssas
SQL Server Architecture ?
Can two tables share a primary key?
What are “unrepeatable reads”?
how can a database be repaired? : Sql server administration
What is 5nf in normalization form?