OK, you can add 'by hand' one record to your table. And you want to add 100 records to it, in code (I assume). Where do you get the information from? Do you make it up as you go? Do you read it from somewhere - if so, from where?
You can do something like:
[tt]
Insert Into tbtMyTable (Select * from tblSomeOtherTable)
[/tt]
or
[tt]
For i = 1 to 100
Insert Into tblMyTable(1, 2, 'abc', i)
Next i
[/tt]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.