我的其它博客:相册博客 | 百度博客站 | csdn专栏 | 心情博客

摘要: 【转】精妙的SQL语句(值得收藏) ============================== * 说明:复制表(只复制结构,源表名:a 新表名:b) select * into b from a where 1<>1 * 说明:拷贝表(拷贝数据,源表名:a 目标表名:b) insert into b(a, b, c) select d,e,f from b; * 说明:显示文章、提... 阅读全文
posted @ 2007-10-30 16:30 dukey 阅读(215) 评论(0) 推荐(0) 编辑