I have table in which I have birthdate , age location and Score and I want to retrieve the count of number of records created between two dates where score is not null and there is no time stamp field.
How can I do it if there is no time stamp field.
Is there any meta data and if it is , how can I run the query?
try a query like this:
Add a column
timestampto the existing table, with default value asNULL, and query the above statement, it should work.Whenever you add a column, to a table already having records, the corresponding values are blank for that new column, for existing records.