1
vote
Need Simple Select Query
I'm guessing you are after any rows that appear more than once with the same TR and TK?
If so, then 'HAVING' is probably what you are after
SELECT DISTINCT TR,TK
FROM TBLSR …
3
votes
Generate a row per minute of the day from a sparsely populated database table
Make sure the date column has an index on it and performance should be reasonable.
SELECT t.Date,
COUNT(*) AS Quantity,
(SELECT COUNT(*) FROM Table WHERE Date < t.Date) AS Runnin …
