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 we can compare two database data?
What are the security related catalog views? : sql server security
What is the default port for SQL Server over a firewall?
How to access the deleted record of an event?
What is ms sql server index?
What are the difficulties faced in cube development? : sql server analysis services, ssas
Do you know what is openxml in sql server?
What is the concept of optimization?
Explain tablesample?
How you would rewrite the sql query to return the customerid sorted numerically?
How to loop through result set objects using odbc_fetch_row()?
Explain the dirty pages?
What are the disadvantages of using the stored procedures?
whats new about truncate in sql server 2008?
Can we do dml on views?