Middle Initial
Middle initial of the NASA principal investigator associated with the award. This is a string attribute used to capture the investigator's name detail at the middle-initial level, and it may be blank when no middle initial is provided.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Disambiguating principal investigators with similar names
- Supporting record linkage across NASA award records
- Assembling full investigator name strings for reporting
Common Mistakes
- Using the middle initial as a unique identifier
- Assuming missing values mean the investigator has no middle name
Query Guidance
Use this field in SELECT clauses for name assembly or in WHERE clauses only after normalizing values with TRIM and UPPER/LOWER. For matching or grouping, combine it with first and last name fields; do not rely on it as a standalone key.
SQL Examples
Preview values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__principalInvestigator__middleInitial AS middle_initial
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__principalInvestigator__middleInitial IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__principalInvestigator__middleInitial AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__principalInvestigator__middleInitial 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.