Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下基于 MS-SQL 的查询,我需要将其转换为基于 Sqlite3 的数据库
DECLARE @status int, @nextPriority int SELECT @status = status FROM status WHERE nameStatus = '234'
然后我必须在 INSERT 查询中使用该变量。
我认为一种方法是执行查询和绑定变量,但我愿意在 Go 中执行所有查询。可能吗?
我正在使用 Python 2.6
谢谢
sqlite 不支持存储过程。
您可以SELECT直接进入INSERT语句(示例),也可以将其分解为两个单独的准备好的语句。
SELECT
INSERT
sqlite 对查询及其响应的开销并不完全相同,因此通常没什么大不了的。