how to get 25th row in any table in sqlserver can u tell me
syntax
Answers were Sorted based on User's Feedback
Answer / sujitha
For Example TableName: Employee. Employee Have The
Following Fields.
Emp_No ( Identity Value)
Emp_Name
Designation
Select Top 1 * From Employee Where Emp_No Not in(Select
Top 24 Emp_No From Employee)
| Is This Answer Correct ? | 13 Yes | 2 No |
Answer / anand k
For Ex. We are Using State Table for this scenario.
Records In State Table is (Total 50 Rec)
Alabama
Alaska
Arizona
Arkansas
California
Colorado
Connecticut
Delaware
Florida
Georgia
Hawaii
Idaho
Illinois
Indiana
Iowa
Kansas
Kentucky
Louisiana
Maine
Maryland
Massachusetts
Michigan
Minnesota
Mississippi
Missouri
Montana
Nebraska
Nevada
New Hampshire
New Jersey
New Mexico
New York
North Carolina
North Dakota
Ohio
Oklahoma
Oregon
Pennsylvania
Rhode Island
South Carolina
South Dakota
Tennessee
Texas
Utah
Vermont
Virginia
Washington
West Virginia
Wisconsin
Wyoming
--------
Now we are Selecting 25th record from the state table.
SELECT STA.*
FROM [State] STA,
(SELECT StateName,ROW_NUMBER() OVER (ORDER BY StateName)
ROWNO FROM [State] ) ROW
WHERE ROW.ROWNO = 25
AND ROW.StateNAme = STA.StateName
ORDER BY StateName
| Is This Answer Correct ? | 4 Yes | 3 No |
Answer / pradyumna
set rowcount 25
declare @temptable table
(id int identity(1,1),itemid int)
insert @temptable
select itemid from tbl123
select * from tbl123 where itemid=(select itemid from
@temptable where id=25)
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nagaraju jella
select *
from securitytest_64.userroles u
where rowid =
(select max(rowid) from securitytest_64.userroles u
where rownum < 26)
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / svreddy
select *from emp a where 25=(select count(distinct(eno))from emp b where a.eno>=b.eno
| Is This Answer Correct ? | 0 Yes | 0 No |
We create index colomn in that table . use that index
coloum we take the 25th row of that table .
Example
SELECT * FROM table1 WHERE index_coloumn = 25
| Is This Answer Correct ? | 4 Yes | 8 No |
Answer / venkat
suppose the table x having a column with name empid
set rowcount 25
select * from x where empid not in (select top 24 empid
from x)
| Is This Answer Correct ? | 1 Yes | 6 No |
Different Types of Functions ?
How do I install only the client tools of sql server 2000?
How to sort the query output with order by clauses in ms sql server?
what is procedure in sql?
I have a huge amount of data which is displayed in a report. The data is viewed every day. Every day the data is displayed in 30 secs but suddenly today it is giving an timeout message today. Data has not been changed. The situation is same as yesterday. What might be the reason??? Please Answer.
What is the syntax to execute the sys.dm_db_missing_index_details?
Which joins are sql server default?
What is row by row processing ?
hi ..i am working as a sql dba.....now i want to learn more about t-sql..... is it possible to learn online.... plz refer any site ..thankq
What are difference between Cluster index and Non-Cluster index?
Why do we use stored procedures in sql server?
Can you tell me the difference between DELETE & TRUNCATE commands?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)