I am experiencing a very strange case :
When running this query
c.execute ('select * from banks_row_data where Record_id=544')
test=c.fetchall()
The result is None
while when running :
c.execute ('select * from banks_row_data')
test=c.fetchall()
The result is the entire table
What am i doing wrong?
Thanks