兩個類似的疑問:sqlite3,Python中的「=」和「匹配」之間的區別?
firstQuery = "select * from table_name where column_name = match_value"
secondQuery = "select * from table_name where column_name match match_value"
執行使用dbCursor.execute()工作正常第一位的,但在執行第二個拋出:
sqlite3.OperationalError: unable to use function MATCH in the requested context
這是爲什麼可能有人請解釋一下嗎?謝謝。