以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- SQLCommand筛选条件 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=80460) |
-- 作者:一笑 -- 发布时间:2016/1/23 15:33:00 -- SQLCommand筛选条件 按照帮助编写用户登录窗口(http://www.foxtable.com/help/index.html?n=0395.htm#userconsent#),窗口的AfterLoad事件代码为: Dim cmd As New SQLCommand 现在想对name增加group删选条件,以下代码都报错,求解,谢谢 cmd.CommandText = "selecX DISTINCT Name From {Users} Where Group = \'市场部\'" cmd.CommandText = "selecX DISTINCT Name,group FROM {Users}" |
-- 作者:Hyphen -- 发布时间:2016/1/23 15:59:00 -- 报什么错误? 试试 cmd.CommandText = "sele ct DISTINCT Name Fr om {Users} Where [Group] = \'市场部\'"
|
-- 作者:大红袍 -- 发布时间:2016/1/24 11:06:00 -- name、group等关键字,加上[group] |