I want to find how many columns from the table are timestamp columns. I have tried a simple query like below to retired columns with the timestamp by hardcoding the name of the columns
SELECT time1, time2 FROM givenTable;
but I don't want to hard code the name of the timestamp columns. Is there any way in SQL which tell me the name of the columns in the table is the timestamp column?