Is there a way to combine a SQL expression with a field.
For example: to_date(dateField, yyyy-mm-dd)
Or is it possible to write a field without a comma afterwards.
For example:
Field without Comma: to_date(
Field without Comma: dateField
Field: )
So in the Insert Statement will be written:
insert into MOCK_DATA (FirstName, LastName, Birthdate, Country) values (‘Walter’, ‘Riley’, to_date(‘1982-11-20’, yyyy-mm-dd), Japan);