I have the following table
| Path | Version | FirstName | LastName |
| People/Frank | 1 | Frank | Smith |
| People/Frank | 2 | Frank | Jones |
| People/Jack | 1 | Jack | Johnson |
I'd like my query to return the Path and Max Version for all the rows that match a given criteria.
Currently I'm doing this;
select Path, MAX(Version) as Version from Table where FirstName = 'Frank' group by Path;
This is a really performance critical part of the code and I'm wondering if there's something specific I can do to sql server that would make this quicker or if there's something I'm missing.
Additionally I'd like to make sure I have my constraints defined correctly. I'm expecting the queries to contain any or all of the columns that aren't path and version, so you could in the above case query for either FirstName, LastName or both. My create table sql looks like this:
create table Index_PersonByFirstName(
FirstName NVarChar(100) not null,
LastName NVarChar(100) not null,
Path NVarChar(100) not null,
Version Int not null,
constraint pk_Index_PersonByFirstName primary key(
FirstName,
LastName,
Path,
Version),
constraint uc_Index_PersonByFirstName_Path_Version unique (
Path,
Version),
constraint fk_People_Path_Version foreign key (
Path,
Version) REFERENCES People(Path, Version))
Would it make sense to remove the Path from the primary key as that's never directly queried?
Another option I've considered is having a column that indicates if the row is the 'latest' version for a given path and updating the old rows when a new one is written, but that feels icky.
Your thoughts would be greatly appreciated. If I haven't been detailed enough please let me know and I'll add any other information that is required.