This might be a basic question but I can't seem to get the output of the python/sql statements I write. For example, when type the following,
from sql import *
from sql.aggregate import *
from sql.conditionals import *
user = Table('user')
select = user.select()
tuple(select)
I don't see the output (i.e the records) of these statements in the console. Why is this? When I type tuple(select) in the shell, I get the following as output:
('SELECT * FROM "combine2" AS "a"', ())
Note that I am using the sql module.
python-sqllibrary.