I have PLSQL block and a table. I need to write an expression from that tables rows. Lets say my tables rows be like a,b,c,d and my description should be like;
desc_ VARCHAR2(32000) := &a || &b || &c || &d
Some of my variables depends on conditions. For example if &d is Null I need to write "UNDEF" if its not null need to write "something".
My question is how can I applied this to the variables?
Thank you