C
Chris
I'm creating a script file and I need to populate my lookup tables.
How would I write code to populate the values 1, 2 , ....9 (Only an example
so no better ways please)
At the moment I can only populate one value by
INSERT INTO [tbLNumbers]
(Numbers)
VALUES
('1');
I would like something like;
INSERT INTO [tbLNumbers]
(Numbers)
VALUES
('1')
('2')
('3')
('4'); etc
Please help.
How would I write code to populate the values 1, 2 , ....9 (Only an example
so no better ways please)
At the moment I can only populate one value by
INSERT INTO [tbLNumbers]
(Numbers)
VALUES
('1');
I would like something like;
INSERT INTO [tbLNumbers]
(Numbers)
VALUES
('1')
('2')
('3')
('4'); etc
Please help.