Posts Tagged ‘Sql’

dede5.1升5.3程序完毕

五月 25, 2009, Posted by cike at 6:55 上午

反复折腾多次总算把杨树网(www.yangshu.org)升级完成,问题主要出在分类信息、问答,官方升级说明中也强调了这两个是不能兼容新版本的

Read More

[转]精妙SQL语句收集

七月 4, 2007, Posted by cike at 11:06 上午

说明:复制表(只复制结构,源表名:a 新表名:b) SQL: select * into b from a where 1<>1 说明:拷贝表(拷贝数据,源表名:a 目标表名:b) SQL: insert into b(a, b, c) select d,e,f from b; 说明:显示文章、提交人和最后回复时间 SQL: select a.title,a.username,b.adddate from table a,(select max(adddate) adddate fr…

Read More
Scroll to the top