我的代码有问题,错误是语法不正确,。,这个代码请帮忙。
String sql = @"select
C_Date,
L_UID,
min(C_Time) as [login],
max(C_Time) as [logout]
from
tEnter
where
L_UID = "+txtEmpName+"
and
C_Date between '" + dtfrom + "' and '" + dtto + "'
group by
C_Date,
L_UID";
答案 0 :(得分:1)
狂野猜测:txtEmpName
是一个文本字段,也许是“Wile E. Coyote”。
构造字符串的方式,txtEmpName
需要被引用,而事实并非如此。 SQL解析器在遇到不带引号的.