I have a table with a "Date" column. Each Date may appear multiple times. How do I select only the dates that appear < k number of times?
|
|
Hopefully, it works for ORACLE. HTH |
||
|
|
|
|
You may not be able to count directly on the datefield if your dates include times. You may need to convert to just the year/month/day format first and then do the count on that. Otherwise your counts will be off as usually there are very few records withthe exact same time. |
||
|
|
|
|
example
|
||
|
|
|
Assuming you are using Oracle, and k = 5:-
If your date column has time filled out as well, and you want to ignore it, modify the query so it looks as follows:-
|
|||
|
|
|
|
And then to get the original data back:
|
||
|
|
|
|
For "appears x times" queries it is best to use HAVING clause. In your case, query can be like:
or, in you need to select other columns except Date:
You can also rewrite the IN to INNER JOIN, however this won't give performance gain, as, in fact, query optimizer will do this for you in most RDBMS. Having index on Date will certainly improve performance for this query. |
|||
|
|
|
|
Use the COUNT aggregate:
|
||
|
|
|
|
See @[SQLMenace] 's response also. It's very similar to this, but depending on your database his JOIN will probably run faster, assuming the optimizer doesn't make the difference moot. |
|||
|
|
