I'm a bit confused about how those work:
field1 field2 field3
aa 12345 333
aa 34567 444
aa 45678 555
Using the above:
If I do a select distinct field1,field2,field3 I will get all three records because they are not exact duplicates, right?
Now what about select first. I want only the first record.
Do I do a select first field1, field2, field3 Or do I do select field1, first field2, first field3?
field1 field2 field3
aa 12345 333
aa 34567 444
aa 45678 555
Using the above:
If I do a select distinct field1,field2,field3 I will get all three records because they are not exact duplicates, right?
Now what about select first. I want only the first record.
Do I do a select first field1, field2, field3 Or do I do select field1, first field2, first field3?