hi
i am trying to use a t-sql command in access, i know nothing about jet sql
my command is:
declare @counter int
set @counter = 1
while @counter <= (select count(*) from dbo_employees)
begin
insert into dbo_fup(eid, fdate) values(@counter, '12/10/06')
set @counter = @counter + 1
end
but somehow it is not working.. will it work if i convert it to jet sql? if yes, can some1 convert it please?
i am trying to use a t-sql command in access, i know nothing about jet sql
my command is:
declare @counter int
set @counter = 1
while @counter <= (select count(*) from dbo_employees)
begin
insert into dbo_fup(eid, fdate) values(@counter, '12/10/06')
set @counter = @counter + 1
end
but somehow it is not working.. will it work if i convert it to jet sql? if yes, can some1 convert it please?