Because of a lapse in government funding, the information on this website may not be up to date, transactions submitted via the website may not be processed, and the agency may not be able to respond to inquiries until appropriations are enacted. The NIH Clinical Center (the research hospital of NIH) is open. For more details about its operating status, please visit cc.nih.gov. Updates regarding government operating status and resumption of normal operations can be found at OPM.gov.

Lexical Tools

Acronym and Expansion Tables

  • Tables:

    Acronym
    NameTypePropertiesNotes
    expNpLcCHAR(150)Index key Expansion without punctuations and lowercased
    expCHAR(180). Expansion
    aTypeCHAR(13). Acronym or abbreviation
    acrNpLcCHAR(70)Indexacronym without punctuations and lowercased
    acrCHAR(75).Acronym

    Notes:
    The maximum length for expNpLc is 142. We use CHAR(150) for this column.
    The maximum length for exp is 169. We use CHAR(180) for this column.
    The maximum length for expNpLc is 12. We use CHAR(13) for this column.
    The maximum length for expNpLc is 67. We use CHAR(70) for this column.
    The maximum length for expNpLc is 71. We use CHAR(75) for this column.

  • SQL Examples:

    • Find acronyms for "XXX"
      1. "xxx" = XXX.toLowerCase() and strip punctuation;
      2. SELECT acr FROM Acronym WHERE expNpLc = "xxx"

    • Find Expansions for "XXX"
      1. "xxx" = XXX.toLowerCase() and strip punctuation;
      2. SELECT exp FROM Acronym WHERE acrNpLc = "xxx"