天天看點

從另一個表中添加資料

例子1.

create table profession

(

    id int not null identity primary key,

    profession varchar(20)

)

insert into  profession (profession)

 select profession from my_contacts group by profession order by profession

本文轉自鵝倌51CTO部落格,原文連結: http://blog.51cto.com/kaixinbuliao/881363,如需轉載請自行聯系原作者

繼續閱讀