会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
MySkey
MyLife
博客园
首页
新随笔
联系
订阅
管理
2009年3月25日
select into 和 insert into select 区别及用法
摘要: select * into destTbl from srcTblinsert into destTbl(fld1, fld2) select fld1, 5 from srcTbl以上两句都是将 srcTbl 的数据插入到 destTbl,但两句又有区别的。第一句(select into from)要求目标表(destTbl)不存在,因为在插入时会自动创建。第二句(insert into sel...
阅读全文
posted @ 2009-03-25 15:30 steven_2005
阅读(448)
评论(0)
推荐(0)
编辑