T-SQL高级查询语句 高级查询 1.连接查询,对结果集列的扩展 select * from info select * from info,nation #形成笛卡尔积 select * from info,nation where info.nation=nation.code select info.code,info.name,sex,nation.name,birthday from info,nation where info.nation=nation.code select *…