SQL SELECT语句为了将查询结果存放到临时表中应该使用短语:Into cursor 或 Into cursor cursorname
表名之前加#就是临时表了,加两个#就是全局临时表
select * into #table from tb;So:选B;
b