I have DB2 V7 for IBM. I have a simple select statement which produces 2 columns. Column 2 is smallint. I need col2 to say Picking instead of 720 or Verify instead of 740. Both 720 and 740 can be in the same result set. This is what I have so far. Any help will be greatly appreciated.
Select col1, varchar(replace ('720', '720', 'Picking'), 10) from table1
Select col1, varchar(replace ('720', '720', 'Picking'), 10) from table1
Comment