Sql拼接字符串

2024年12月01日 18:34
有2个网友回答
网友(1):

sql = "select * from" & mc '怎么拼对吗?
这个是正确的。
set rs = Conn.execute("select * from & mc") ‘怎么拼接对吗?
这个是不对的。这个里面的sql语句建议赋值给一个变量,然后直接调用变量,当然也可以这么写,不过要注意格式:set rs = Conn.execute("select * from "& mc)应该是这个样子的,不知道有没有记错,你试试看。

网友(2):

sql = "select * from " & mc
from后面要有个表名,不然语句中from和表名就连一块了