Every time a user comes to my page, a couple of local database tables are CREATED IF NOT EXISTS. Then the records for these tables are queried from the Actual Database and inserted into the local database.
Is there a way to tell if a table has "Just been created" or if it "Already existed", so I do not have to call the "Actual Database" and prevent getting duplicate records?
Thanks!