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