sql - Unmatched column Data -
i have situation explained below
select * version
vno name sal deptno - - - - - - - - -------------------------------------------------------------------- 1 xxx 1000 10 - - - - - - - - 2 yyy 1000 10 - - - - - - - -
here need simple plsql code returns unmacthed column_name data too.
i need following output:
vno 1 2 name xxx yyy
here columns , data both generic.
select vno,name version column_name != 'your variable'; //hope works
Comments
Post a Comment