If I have a list that contains like 50 elements, how can I create 50 independent tables for my data base?
My code is like that:
for ticker in B3tickers():
cur.execute( 'create table ? '\
'(data datetime primary key, '\
'open REAL, '\
'high REAL, '\
'low REAL, '\
'close REAL, '\
'adjclose REAL)')
B3tickers is a list with all Brazilian companies symbol.