-- First, verify the column exists in your schema
SELECT table_name, column_name, data_type
FROM user_tab_columns
WHERE UPPER(column_name) LIKE '%INTERNTIMESTAMP%'
ORDER BY table_name;
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)