这条语句怎么写(50)

  • 主题发起人 主题发起人 jiangxidna
  • 开始时间 开始时间
J

jiangxidna

Unregistered / Unconfirmed
GUEST, unregistred user!
我想实现:select * from table where fieldname like 'field%'我用delphi编程,用的是sql server数据,设置了变量:temp语句实现: select * from table where fieldname like '''+temp+''''+'%但是不正确,通过数据库工具发现确实不正确,不知道哪位兄弟知道怎么弄
 
select * from table where fieldname like '''+temp+'%'''+'44这样呢?
 
var temp,str:String;........ str:= temp +'%'; select * from table where fieldname like '''+str+'''
 
insert('%',temp,n);//n为temp的长度+1select * from table where fieldname like '''+temp+''''
 
temp:='field%'cslq:='select * from table where fieldName like ' +quotedStr(temp);
 
var temp:String;SQL语句为:'select * from table where fieldname like ' + QuotedStr(temp + '%')'
 
谢谢诸位大哥!小弟分少了,就这样将就吧!!呵呵
 
后退
顶部