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

ORACLE VPD 策略函数返回结果中怎么给别名

2013-04-20 
ORACLE VPD 策略函数返回结果中如何给别名策略函数返回结果如下:exists (select * from pms_t_itemright w

ORACLE VPD 策略函数返回结果中如何给别名
策略函数返回结果如下:
exists (select * from pms_t_itemright where buyer_id = 'zhangsan' and item_id = t.item_id)
请问,如何给表(或试图)加别名 t ? oracle vpd
[解决办法]
什么意思没有看懂哦
[解决办法]
这个不就直接加就可以了吗???select * from pms_v_item_filtered t where exists (select item_id from pms_t_itemright a where a.buyer_id = 'zhangsan' and a.item_id = t.item_id);

热点排行