Limit example
db1cursor.execute("""SELECT * FROM my_table
WHERE some_column = ?
ORDER BY some_column_name ASC
LIMIT 1
""",(my_value1,))
rows = db1cursor.fetchall()
