创建数据库的sql语句 SQLselect语句为了将查询结果放到临时表中使用哪个关键字?
SQLselect语句为了将查询结果放到临时表中使用哪个关键字?Direct:选择*into#content from table truncate table#content--清空临时表drop
SQLselect语句为了将查询结果放到临时表中使用哪个关键字?
Direct:选择*into#content from table truncate table#content--清空临时表drop table#content--删除临时表。您还可以:create table#content(userid varchar(10),username varchar(10))--create temporary table insert into#content select userid,username from table truncate table#content--empty temporary table drop table#content--Delete temporary table