Last Name
Human-readable last name for the NASA alternate principal investigator named on the award record. This is a label field associated with the alternate principal investigator entity rather than a coded procurement attribute.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Identify the alternate principal investigator on NASA awards
- Join or compare personnel names within award records
- Review staffing patterns across NASA-funded actions
Common Mistakes
- Assuming this is a unique person identifier
- Using the value alone for exact matching without other name fields
Query Guidance
Use this field as a display or filtering attribute on NASA-specific award records, and combine it with other alternatePrincipalInvestigator name elements for better matching. In SQL, prefer case-insensitive comparisons and trim whitespace; do not treat it as a numeric or coded key unless validated by the source data.
SQL Examples
Preview values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__alternatePrincipalInvestigator__lastName AS last_name
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__alternatePrincipalInvestigator__lastName IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__alternatePrincipalInvestigator__lastName AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__alternatePrincipalInvestigator__lastName IS NOT NULL
GROUP BY value
ORDER BY record_count DESC
LIMIT 25
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.