select count 时报 Duplicate column name 'orderid' 错误

参考http://stackoverflow.com/questions/4815627/1060-duplicate-column-name-id

例如这样的sql

select count(0) from 
(select
     a.id as id
     a.time as time
     b.bid as bid
     b.time as time 
 from a left join b on a.id = b.id)
 as totl;
 
 这个时候有两个time 列。就会报出Duplicate column name 'time'


你可能感兴趣的:(select count 时报 Duplicate column name 'orderid' 错误)