一个关于SQL的问题(50分)

  • 主题发起人 主题发起人 阿汀
  • 开始时间 开始时间

阿汀

Unregistered / Unconfirmed
GUEST, unregistred user!
我使用TQuery连接一个Paradox数据库,在查询时,为什么有的sql函数不能用。
例:
select substring(hu,1,3) 字符 form hux
会报错。
取子串应该用什么函数呢?有没有这方面的帮助文件?
谢谢!
 

SELECT SUBSTRING(hu FROM 1 FOR 3) AS 字符 FROM hux

见 BDE 的 Local SQL Help
 
说详细点就是:“C:/Program Files/Common Files/Borland Shared/BDE/localsql.hlp”文件。
 
用like '%子串'
select * form hux where 域名 like '%子串'
 
select to_char(substr(hu,1,3))字符 form hux;
 
多人接受答案了。
 
后退
顶部