Viewing 2 posts - 1 through 3 (of 3 total)
Hi All,
drop table #temp
create table #temp
(
fldID int,
October 18, 2004 at 8:15 am
#527048
Hi Mega,
Please check out this query...i think it will work
surveyno int,
subdivno varchar(10)
)
INSERT INTO #temp values(1, '1')
INSERT INTO #temp values(3, '3B')
INSERT INTO #temp values(2, '2')
INSERT...
October 18, 2004 at 7:47 am
#527025