sql2000如何查询两张表中相同的列名

2024-12-20 05:58:03
推荐回答(2个)
回答1:

假如列名为sno 有S表 和C 表 则 select s.sno from s 或者 select c.sno from c

回答2:

select a.colname as colname1,b.colname as colname2 from table1 a,table2 b where .......