All, I know there is a very basic SQL, but I can't figure it out. I have one table named "dataset", which includes "Account_NO", "Device". "Date" and "Time". I would like to see only the first 2 records or less of each unique account number/Device.
Table looks like this:
Account_no Device Date Time
00007 123 3/1/2012 11:01:01
00007 123 3/2/2012 12:02:22
00007 123 3/3/2012 09:02:44
00010 335 02/02/2012 01:22:22
00010 655 02/01/2012 13:33:33
Result I am looking for:
00007 123 3/1/2012 11:01:01
00007 123 3/2/2012 12:02:22
00010 335 02/02/2012 01:22:22
00010 655 02/01/2012 13:33:33
etc...
Thanks for the help