Hi,
Say my table is like this...
`
Tenancy Number Tenant Number Tenant
1 1 John
1 2 Jane
1 3 Pete
2 56 Fred
2 78 Jackie
How can I select the rownumber based on grouping by the tenany number? So far I can get the row number in, but I can't figure a way to "reset" that upon next tenancy number.
I would like to achieve the following results
MYROWNUM Tenancy Number Tenant Number Tenant
1 1 1 John
2 1 2 Jane
3 1 3 Pete
1 2 56 Fred
2 2 78 Jackie
Sorry if I haven't explained this too well!
Thanks!