我使用插入查询使用python和sqlite3添加数据库中当前用户的评论。我在下面分享查询。它不起作用。
c.execute('insert into tableforimagedata(select review from tableforimagedata where id=?) values(?)',(idd,n1))
显示错误:
args = ('near "select": syntax error',)
with_traceback = <built-in method with_traceback of OperationalError object>