在近日的写Web程序时用到了Access的模糊查询,在Acces里写代码怎么也找不到记录,后来才起来原来Acess和SqlServer的模糊查询是有特别的 条件:查找表A 的Name字段中包括 "B" 的记当 在Access里的代码: 1 Select * from a where name like '*b*'Sql Server查询分析器的代码 Select * from a where name like '%b%'这时你会发现Access里可以找到相关的记录,但把'*'必成'%'就...[ 查看全文 ]
在Access中进行时间的比较sql语句很简单,如Select * From table Where thetime#"& Now() &"#这样即可 在MSSQL就不能这样,要用DateDiff语句和GetDate()函数进行比较。 如Select Count(*) From table Where DateDiff(s,GetDate(),thetime)0,我自己特别做了个50万条数据的的表,执行这条语句差不多需要1200毫秒。 后来研究...[ 查看全文 ]
<% On Error Resume Next Server.ScriptTimeOut=9999999 Function getHTTPPage(Path) t = GetBody(Path) getHTTPPage=BytesToBstr(t,"GB2312") End function Function GetBody(url) on error resume next Set Retrieval = CreateObject("Microsoft....[ 查看全文 ]