插入数据时同时创建新表的语法结构为:Select columns Into newtable From datasource [where conditions]。例如,Select * Into stu_female From student Where ssex='女'。需要注意的是,Select/into语句并非连接或视图的替代品,它可视为数据的快照或临时备份。然而,最佳实践是用视图代替这种方法。