Ajax完全自学手册PPT和源代码分来上传了,需要PPT的请自己在我的资源里面查找。 1.本书1~22章所附代码的运行环境 操作系统:Windows 2003、Windows XP Professional,或者Windows 2000 开发环境:Microsoft Visual Studio 2005、Microsoft Visual Studio 2003 数据库:SQL Server 2005、SQL Server 2000 Web服务器:IIS 5.1及以上版本 2.本书所附光盘范例
Ajax完全自学手册PPT和源代码分来上传了,需要PPT的请自己在我的资源里面查找。 1.本书1~22章所附代码的运行环境 操作系统:Windows 2003、Windows XP Professional,或者Windows 2000 开发环境:Microsoft Visual Studio 2005、Microsoft Visual Studio 2003 数据库:SQL Server 2005、SQL Server 2000 Web服务器:IIS 5.1及以上版本 2.本书所附光盘范例
oracl 和db2 常用语法比较: 1、取前N条记录 Oracle:Select * from TableName where rownum <= N; DB2:Select * from TableName fetch first N rows only; 2、取得系统日期 Oracle:Select sysdate from dual; DB2:Select current timestamp from sysibm.sysdummy1; 3、空值转换 Oracle:Select
查询本日记录
SELECT * FROM messages WHERE CONVERT(Nvarchar, CreateDate, 111) = CONVERT(Nvarchar, GETDATE(), 111) ORDER BY CreateDate DESC
SELECT * FROM 表 WHERE datediff(day,列名,getdate())=0
查询本年
SELECT count(*) FROM messages WHERE datediff(year,CreateDa