标签:pwd left join app 连接 use select name rom rac
比如:select a.id,u.name,u.pwd from userinfo u.appuser a where a.id=u.id(+);
a,id 与u.id前后位置有什么关系?
外连接啊,这个例子里面是做连接
相当于
select a.id,u.name,u.pwd
from userinfo u
left join appuser a on a.id=u.id;
标签:pwd left join app 连接 use select name rom rac
原文地址:http://www.cnblogs.com/lxl57610/p/7506195.html