Hello,
I've got the following table:
COMP_ID COMP_NAME COMP_PSEUDO
----------------------------------
1 ABC XXYXX
2 ORACLE YYXXY
3 DELL OOSSX
4 IBM
5 MS
So, (ABC,DELL & ORACLE) all subscribe to my fine Pseudo service, that enables them to be "cloaked" on my site. Meaning, instead of parsing DELL on my site, it'll say OOSSX.
IBM & MS will remain visible.
My question goes like this, is there a way (by fx. a trigger or something else) to return the COMP_PSEUDO field as COMP_NAME ?
Like this:
SELECT COMP_NAME FROM MY_TABLE;
-----------------
XXYXX
YYXXY
YYXXY
IBM
MS
-----------------
Any help much appreciated, thanks !
I've got the following table:
COMP_ID COMP_NAME COMP_PSEUDO
----------------------------------
1 ABC XXYXX
2 ORACLE YYXXY
3 DELL OOSSX
4 IBM
5 MS
So, (ABC,DELL & ORACLE) all subscribe to my fine Pseudo service, that enables them to be "cloaked" on my site. Meaning, instead of parsing DELL on my site, it'll say OOSSX.
IBM & MS will remain visible.
My question goes like this, is there a way (by fx. a trigger or something else) to return the COMP_PSEUDO field as COMP_NAME ?
Like this:
SELECT COMP_NAME FROM MY_TABLE;
-----------------
XXYXX
YYXXY
YYXXY
IBM
MS
-----------------
Any help much appreciated, thanks !