Hi guys,
I have about 20 tables with a generic name like :
table_1
table_2
table_3
table_4
table_5
...
table_20
I need to execute the same query on each table. As I'm a bit tired to copy paste the same thing 20 times in a text file .. Can I do something like a for loop or whatever that does the same and would execute my query
Code:
i=1
for i [1, 20] {
go to table_i ... do the query
i=+1
}
I know it might be confusing .. but it's hard to explain sorry
