I have the following select statement in Access that i need to convert to a pass through query. How would i convert to oracle sql?
Int((Int("20" & Left([YEAR_CODE],2) & "0831")-Val(Format([DATE_OF_BIRTH],"yyyymmdd")))/10000) AS Age
The year code field is stored as four digits 0099, 0607 etc..
Int((Int("20" & Left([YEAR_CODE],2) & "0831")-Val(Format([DATE_OF_BIRTH],"yyyymmdd")))/10000) AS Age
The year code field is stored as four digits 0099, 0607 etc..