sql问题(5分)

  • 主题发起人 主题发起人 ifcansee
  • 开始时间 开始时间
I

ifcansee

Unregistered / Unconfirmed
GUEST, unregistred user!
sqlxcx:='select sum(succ) as succ from
s12_a04b.dbf where name='181' or name='29'';

提示出错,如何在一个字符串中加入类似name='181'这样的语句,也就是说如何在
字符串中加入‘’
 
试试:
sqlxcx:='select sum(succ) as succ from
s12_a04b.dbf where name=''181'' or name=''29''';
 
这样写:
sqlxcx='select sum(succ) as succ from s12_a04b.dbf where name=''181'' or name=
''29''';
 
多人接受答案了。
 

Similar threads

D
回复
0
查看
897
DelphiTeacher的专栏
D
D
回复
0
查看
814
DelphiTeacher的专栏
D
D
回复
0
查看
692
DelphiTeacher的专栏
D
D
回复
0
查看
818
DelphiTeacher的专栏
D
后退
顶部