Hi
while attempting to run
SELECT
workpackage_desc AS description,
to_timestamp(completion_time/1000) AS endTime,
to_timestamp(start_time/1000) AS startTime,
type,
subtype,
concat('FirstnameBirthyear:',key) AS externalId,
1234567890 AS dataSetId
FROM IFSDB.maintenance
WHERE to_timestamp(completion_time/1000)>to_timestamp(start_time/1000)
I get this error
Verify that the 'IFSDB.maintenance' relation exists | code: 400 | X-Request-ID: 019f535a-a30f-9184-b3d3-966184e9d36b
Note that:
- I substituted my Name and birthyear
- changed the dataset id
My assumption: sure I have a IFSDB.maintenance RAW (not sure if I skipped something in the lesson...)