摘要: 1、只复制一个表的结构select * into [tableName1] from [tableName2] -- 表的复制select top 0 * into [tableName1] from [tableName2] -- top 0 的妙用select * into b from a where 1<>1 --where 1<>1 select top 2 * ... 阅读全文
posted @ 2009-06-16 17:48 漠北水獭 阅读(318) 评论(0) 推荐(0)