我需要在引用另一个单元格的单元格中编写 SQL 插入语句。这样做的正确语法是什么?需要引用另一个单元格的部分在下面写为 {value of cell} :
INSERT INTO map.UserSurveys (surveyId,userId,activeQuestions) VALUES (50, {value of cell}, 1)
如果值是一个数字:
="INSERT INTO map.UserSurveys (surveyId,userId,activeQuestions) VALUES (50, " & A1 & ", 1)"
如果值是字符串:
="INSERT INTO map.UserSurveys (surveyId,userId,activeQuestions) VALUES (50, '" & A1 & "', 1)"
在这两种情况下都替换A1
为您想要的单元格,瞧
如果您必须在 A1 周围加上字符串引号
="INSERT INTO map.UserSurveys (surveyId,userId,activeQuestions) VALUES (50, '" & A1 & "', 1)"