I read the date field in AS400 database, and it looks like this:
2007-01-12
anyway i can display it/ format it as mm/dd/yyyy with a command? or do I need to parse it and put it back together?
in sql server, i use convert(varchar(12),mydate,101)
DB2
Last Comment
Camillia
8/22/2022 - Mon
Guy Hengel [angelIII / a3]
you should be able to use TO_CHAR(yourfield, 'MM/DD/YYYY')