sql server如何根据已有表创建新表_百度知道
sql server如何根据已有表创建新表 A:create table tab_new like tab_old (使用旧表创建新表)B:create table tab_new as select col1,col2… from tab_...
SQl用关键字like使用旧表创建新表_百度知道
SQl用关键字like使用旧表创建新表 create table tab_new like tab_old (使用旧表创建新表)我这样写的create table student2 like student1;可是提示我“关键...