InsertSql

declare @hobby table
(
hobbyID int,
hName nvarchar(100)
);
insert into @hobby(hobbyID,hName)
Select 1,'爬山'
Union ALL
Select 2,'游泳'
Union ALL
Select 3,'美食';

posted @ 2014-04-03 17:50  尼姑哪里跑  阅读(165)  评论(0编辑  收藏  举报