|
I have inherited an application which uses a trigger on a table to create an audit table. So there is table A which has a trigger created on it to create table A_log. What I need is an sql statement or a store procedure to show all the changes that occurred for the last 30 days. Any help will be appreciated
(comments are locked)
|
|
Can you post the table design? Surely there is a timestamp column in the tablea_log table. A simple where clause filtering on the date range should accomplish what you need. or you could use WHERE DATE_COLUMN > '2012-02-17' Thanks Tim. your query did it.
Mar 18 '12 at 10:23 PM
denkyira
Glad I could help. Do you mind selecting my response as your answer?
Mar 19 '12 at 01:34 AM
Tim
(comments are locked)
|

