1
votes

I am trying to work with the date (timestamp to be precise) and getting into trouble. My requirement is below.

I have a stage table where the data is stored as JSON in a Variant Column and the data looks like below in that column.

{
“message_body”: {
“campus_code”: “TEST”,
“campus_name”: “TEST”,
“event_type”: “TEST”,
“location_code”: “A00000”,
“location_name”: “TEST”,
“order”: {
“credit_total”: 0,
“app_version”: “1.0.9”,
“asap”: 1,
“order_datetime”: “2021-01-08 18:19:34”
}
“timezone_offset_minutes”: -360,
}
}

I have below requirements.

Convert the Datetime into only date, so i tried the below and its failing

select TO_TIMESTAMP((body:message_body:order:order_datetime), ‘yyyy-mm-dd HH24:MI:SS’) 
FROM “stage_table”

. its failing with below error message

SQL compilation error: error line 1 at position 7 too many arguments for function [TO_TIMESTAMP(GET(GET(GET(stage_table.BODY, ‘message_body’), ‘order’), ‘order_datetime’), ‘yyyy-mm-dd HH24:MI:SS’)] expected 1, got 2

I have to subtract the minutes from order_datetime. I have to subtract timezone_offset_minutes from order_datetime

select datetime, dateadd(minute, -300, body:message_body:order:complete_datetime) 
FROM
“stage_table”

. its failing with below error message

Timestamp ‘’ is not recognized

Any quick help is hugely appreciated.

Thanks

1
TO_TIMESTAMP accepts only one argument, you don't need to pass date format as second one.Sergiu
select TO_TIMESTAMP(body:message_body:order:order_datetime) FROM " stage_table" and failing with the below error "Timestamp'' is not recognizedRajni
Should be: select TO_TIMESTAMP(body:message_body.order.order_datetime) FROM " stage_table". You do : only for the first field, rest is a dot walk.Sergiu
I tried the above too, but it still failsRajni

1 Answers

1
votes

This will work if you cast the extracted order_datetime to string with ::string:

with sample_table as ( 
select parse_json(replace(replace('{
“message_body”: {
“campus_code”: “TEST”,
“campus_name”: “TEST”,
“event_type”: “TEST”,
“location_code”: “A00000”,
“location_name”: “TEST”,
“order”: {
“credit_total”: 0,
“app_version”: “1.0.9”,
“asap”: 1,
“order_datetime”: “2021-01-08 18:19:34”
}
,
“timezone_offset_minutes”: -360,
}
}', '“', '"'), '”', '"')) body
)

select TO_TIMESTAMP(body:message_body:order:order_datetime::string, 'yyyy-mm-dd HH24:MI:SS')
from sample_table

-- 2021-01-08T18:19:34Z