Hello,
I have a simple table, it has two coloumns [Product] [DateTime],
in this table row updates in random time (it could update every second or no updates for several seconds).
How can I get a frequency distribution (number of product) in evry 10 seconde ?
Product,DateTime
A 10/15/2009 12:34:01
B 10/15/2009 12:34:03
B 10/15/2009 12:34:08
C 10/15/2009 12:37:29
A 10/15/2009 12:43:25
A 10/15/2009 12:44:25
B 10/15/2009 12:44:25
D 10/15/2009 12:44:25
query must return something like this:
3
0
0
1
3
0
Thank you in advance,
Regards,
Fasih
I have a simple table, it has two coloumns [Product] [DateTime],
in this table row updates in random time (it could update every second or no updates for several seconds).
How can I get a frequency distribution (number of product) in evry 10 seconde ?
Product,DateTime
A 10/15/2009 12:34:01
B 10/15/2009 12:34:03
B 10/15/2009 12:34:08
C 10/15/2009 12:37:29
A 10/15/2009 12:43:25
A 10/15/2009 12:44:25
B 10/15/2009 12:44:25
D 10/15/2009 12:44:25
query must return something like this:
3
0
0
1
3
0
Thank you in advance,
Regards,
Fasih