mysql之把查詢的結果保存到新表

有時咱們要把查詢的結果保存到新表裏,建立新表,查詢,插入顯得十分麻煩。 其實直接能夠搞定。例如把表2的查詢結果插入表1: 若是表存在: web insert into tab1 select * from tab2 若是表不存在:sql create table tab1 as select * from tab2
相關文章
相關標籤/搜索