SELECT
column_name,
column_id AS position
FROM user_tab_columns
WHERE table_name = 'YOUR_TABLE_NAME' -- use uppercase
AND data_type LIKE 'TIMESTAMP%'
ORDER BY column_id;
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)