Viewing 8 posts - 1 through 8 (of 8 total)
@ChrisM@Work : this are (50200,50194,50430,50191,1) Record Id
July 2, 2013 at 5:20 am
@HanShi Thanks its working
but i wanna extra add distinct for C_recid
July 2, 2013 at 5:18 am
I was tried that but the Output will be comes based on ascending order based but i wanna the output come arranged on in() class based.....
July 2, 2013 at 4:12 am
i have data in this format only and i wanna store one date so that why i have mentioned in int datatype of DOB
June 25, 2013 at 10:27 pm
create table members
(
id int identity,
firstname varchar(30),
lastname varchar(40),
dob int
)
insert into members(firstname,lastname,dob) values ('Michel','David',19890630)
insert into members(firstname,lastname,dob) values ('Raja','Kumar',19900625)
insert into members(firstname,lastname,dob) values ('Rahul','Sundar',19910501)
insert into members(firstname,lastname,dob) values ('Arun','Edward',19901219)
i wanna result...
June 25, 2013 at 8:14 am
Viewing 8 posts - 1 through 8 (of 8 total)