SQLServerCentral » Latest topics
How to get top and bottom rows from where condition
Hi,
Create Table Test
(
Id int,
name varchar(80)
)
Insert into Test
Select 1, 'A' union All
Select 2, 'B' union All
Create Table Test
(
Id int,
name varchar(80)
)
Insert into Test
Select 1, 'A' union All
Select 2, 'B' union All
No comments:
Post a Comment