sqlite WHERE查询

时间:2015-10-26 16:51:19

标签: python sqlite flask

我正在尝试使用以下

查询烧瓶中的SQLite
cur = g.db.execute('select * from movies where category = action')

但我收到以下错误

OperationalError: no such column: action

如何执行查询?

1 个答案:

答案 0 :(得分:3)

您应引用操作以使其成为字符串而不是列。

 cur = g.db.execute('select * from movies where category = "action"')