sql - Use of + sign in query -


i came across (+) sign in 1 of queries , after research understood means left outer join. however, not able understand query. please rewrite query without (+) sign.

 select e.masterid streamed_events e, masters_encode m   e.masterid = m.id (+) ,   company_id_r = m.company_id(+) ,   m.id null , m.company_id  null 

thanks help....

the plus sign denotes optional table in join

select e.masterid  streamed_events e left outer join  masters_encode m   on e.masterid = m.id  ,  company_id_r = m.company_id m.id null , m.company_id  null 

documentation


Comments

Popular posts from this blog

apache - Remove .php and add trailing slash in url using htaccess not loading css -

javascript - jQuery show full size image on click -