sql - Query to select rows for same Config name but different User IDs -


i have show on view table this:

enter image description here

i have query find config names single rep (example: rep1 in table image pasted above):

select scl.config_name, scl.default_value      store_configurable_list scl, channel_configurables cc, subchannel_configurables scc, store_configurables sc       scl.config_name = cc.config_name (+)      , scl.config_name = scc.config_name (+)      , scl.config_name = sc.config_name (+)      , sc.rep_id(+) in 'ld29'     , scc.subchannel_id(+) = 'excl'      , cc.channel_id(+) = 'ld'; 

now above query - sc.rep_id(+) in 'ld29' - 'rep1'. how can change sql query above rep_id = 'd111' (rep2) , show in tabular format pasted above?

thanks!


Comments

Popular posts from this blog

javascript - Create a stacked percentage column -

Optimising Firebase database by automatically overwriting data -

javascript - Angular UI-Grid customTemplate directive causing rows to load slowly/? -