首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

SQL小白求教解决思路

2014-01-22 
SQL小白求教大哥大姐们看看我这段 为啥总是无法执行?感觉没问题啊?我是小白select x.uid,x.appid,y.appnam

SQL小白求教
大哥大姐们看看我这段 为啥总是无法执行?感觉没问题啊?我是小白
select x.uid,x.appid,y.appname
from ods_bas_user_download_android_appall x,
ods_bas_android_app_info y
where x.appid=y.appid
and x.dt='20131212'
and x.refresh_date>='20131111'
and x.is_active='1'

是hive查询啊。

改成这样试试:

select x.uid,x.appid,y.appname
from ods_bas_user_download_android_appall x
left join ods_bas_android_app_info y
       on x.appid=y.appid
where  x.dt='20131212'
and x.refresh_date>='20131111'
and x.is_active='1'

[解决办法]
你的原语句和我5楼的是等价的,不过和left join大部分情况不等价

热点排行