Desc I have table name: tableName and column name: columnName
Problem I need to create 450 lines and number them from 1 to 450.
I tried:
For(int i=1; i<451;i++)
{
INSERT INTO tableName (columnName) VALUES i
}
for. exp.
IdP
1
2
3
...
Error: Could not find procedure
I don't know what procedure to use.