Answer the question
In order to leave comments, you need to log in
Is it possible to build a query like INSERT INTO WHERE name == John in SQLite?
Is it possible to build a query like INSERT INTO WHERE name == John in SQLite?
sqlite_insert_with_param = """INSERT INTO users
(name WHERE salary == 123)
VALUES (?);"""
data_tuple = (price)
cursor.execute(sqlite_insert_with_param, data_tuple)
sqlite_connection.commit()
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question