Home > Mobile >  Fetching rows changed or added last day without time field?
Fetching rows changed or added last day without time field?

Time:11-24

I want query a table to find the changed rows last day. But there is no explicit time filed in column name. Is there any way I can access these data?

CodePudding user response:

Without a field indicating when a record was changed there is no way to determine when a record was changed, therefore it is unfortunately impossible for you to query the records changed yesterday.

  • Related