cbn4444 发表于 2016-7-19 21:09:59

select...where 语法求助

SQL.Add('select distinct code from alldata where type='''+ComboBox2.Text+''' and group='''+ComboBox3.Text+'''');提示说语法错误。但是若where后面只挂一个条件SQL.Add('select distinct code from alldata where type='''+ComboBox2.Text+''' ');就可以正常运行。不知哪里写错了

dps521 发表于 2016-7-24 18:33:52

不会

FlyCode 发表于 2016-7-26 19:36:32

应该是末尾多了个双引号
SQL.Add('select distinct code from alldata where type='''+ComboBox2.Text+''' and group='''+ComboBox3.Text+'');
页: [1]
查看完整版本: select...where 语法求助