怎么用AS子句创建一个包含Employee表中姓名和薪水字段且名称为New_Employee的新表
create table if not exists New_Employee AS select 姓名, 薪水 from Employee;