错误的语法错误

时间:2017-08-30 07:47:26

标签: sql sql-standards

我的代码有问题,错误是语法不正确,。,这个代码请帮忙。

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";

1 个答案:

答案 0 :(得分:1)

狂野猜测:txtEmpName是一个文本字段,也许是“Wile E. Coyote”。 构造字符串的方式,txtEmpName需要被引用,而事实并非如此。 SQL解析器在遇到不带引号的.

时会遇到问题