I use this code to find the create time of a table:
SELECT CREATE_TIME
FROM information_schema.tables
WHERE TABLE_SCHEMA = 'powersy3_sample'
AND TABLE_NAME = 'empdet'
But, I need to find the time of particular row created in the empdet
table.
I tried to fetch the column names by using this query:
select column_name from information_schema.columns where table_name='empdet'
I tried a different query to fetch the create time and updated time of the particular row but I cannot find a query that works.
How can I achieve this?