Overview
The basic structure for the syntax query on BioMedSearch is: term [FIELD]
Terms
A Single Term is a single word such as "test" or "hello."
Multiple terms can also be combined using parentheses.
A Phrase is a group of words surrounded by double quotes such as "hello world."
Common Search
Quick Search
Expert Search
Sort Order
Boolean Operators
The AND operator is the default conjunction operator. This means that if there is no Boolean operator between two terms, the AND operator is used. The AND operator links two terms and finds a matching document if both terms exist anywhere in a document. This is equivalent to an intersection using sets. The symbol && can be used in place of the word AND.
To search for document that contain all the words water, borne, disease use the query:
water borne disease
or
water AND borne AND disease
This also works with fielded search:
water[TIAB] AND borne[TIAB] AND disease[TIAB]
Note, that the above query IS NOT the same as:
water AND borne AND disease[TIAB]
The above query would search for water and borne in any of the fields, and only restrict the word disease to the Title/Abstract field.
| Boolean Operator | Example | Function |
| AND | Mobile and Telephone | Finds documents which have both mobile and telephone. |
| OR | Mobile or Telephone | Finds documents which have either mobile or telephone or both. |
| NOT | Mobile not Telephone | Finds documents which have only mobile. The NOT operator excludes telephone completely. |
Order of precedence for Boolean operators is:
1. NOT
2. AND
3. OR
Which means that in a query with NOT, AND and OR, terms connected by NOT would be processed first, followed by terms connected by AND and lastly, those connected with OR. Example: auto or manual and gear - Since AND is processed before OR, the query would be interpreted as auto or (manual and gear). Note: BioMedSearch search engine is not case sensitive for boolean operators.
Nested Queries/Creating queries with Parentheses or Brackets
1. Parentheses
2. NOT
3. AND
4. OR
| Nested query | How it is interpreted (following order of precedence) |
| Water and borne or disease | (Water and borne) or disease |
| (water or borne and resistant) and disease | (water or (borne and resistant)) and disease |
Proximity Searching
| Query | Results list would have |
| "Enzyme peptide"~3 | Documents with both enzyme and peptide, where both are within 3 words of each other. |
| "fermentation bacteria milk"~5 | Documents where the words fermentation, bacteria and milk, are present within 5 words of each other. |
Fuzzy Searching
| Query | Results list would have |
| roam~[ti] | Documents with the word "foam" or "roams" in the title field. |
Date Ranges
1999/01/01:1999/03/31[DP]
Dates can also be truncated at the day and month level, meaning that those parts of the date are not required. When omitted, logical values are assumed. The following search will result in the same documents as those in the above example:
1999/01:1999/03[DP]
The following syntax will also work. This search will search for all documents with a Published Date in the year 2008:
2008[DP]
This is logically equivalent to:
2008/01/01:2008/12/31[DP]
Text Ranges
| Query | Results list would have |
| (blood:bloody)[ti] | Articles with terms alphabetically between blood and bloody in the title. For example, bloodless, bloodstream, bloodworm, etc. |
Wildcard Searching
We can use two wildcards: ? to replace exactly one character or number. * to replace zero or multiple characters or numbers.
| Query | Results list would have |
| Analy?e | Analyse and Analyze |
| Sul*ur | Sulphur and Sulfur |
| Harbo*r | Harbor and harbour |
Boosting a Term
Boosting allows you to control the relevance of a document by boosting its term. For example, if you are searching for water disease and you want the term disease to be more relevant, boost it using the ^ symbol along with the boost factor next to the term. You would type:
water disease^4
This can also be done in fielded searches:
water^4[TIAB] disease^2[TIAB] smith[AU]
By default, the boost factor is 1. Although the boost factor must be positive, it can be less than 1 (e.g. 0.2).
Fielded Searching
You can execute field searches by typing in the term(s) to be searched, followed by the field name enclosed in brackets.
As an example, let's assume you want to search for the word water in the Title/Abstract field:
water[TIAB]
If you wanted to search for the word water, regardless of which field it was in:
Water
If you wanted to search for multiple words in the same field:
water[TIAB] disease[TIAB]
The following query will result in the word water being searched for in all fields, and the word disease being limited to the Title/Abstract field.
water disease[TIAB]
If you wanted to search for both terms water and disease in the Title/Abstract field:
(water AND disease)[TIAB]
or
(water disease)[TIAB]
To search for water or disease in the Title/Abstract:
(water OR disease)[TIAB]
Multiple fields can also be searched. The following query will search for the word disease in the Title/Abstract field and the word smith in the Author field.
disease[TIAB] AND smith[AU]
Escaping Special Characters
* * + - ! ( ) : ^ ] { } ~ * ?
To escape these character use the \ before the character. For example to search for (1+1):2 use the query:
(1+1)\:2
Syntax Examples
| Data Element | Description |
| water | Find all documents containing the word 'water' in any field. |
| water[AB] | Find all documents containing the word 'water' in only the abstract. |
| Water AND disease | Find all documents containing both the word 'water' and the word 'disease' in any fields (e.g., title, abstract, or specification/description). The two words may be in different fields. |
| water[AB] AND disease | Find all documents containing the word 'water' in the abstract, and the word 'disease' in any field (e.g.,title, abstract, or specification/description). |
| water[AB] AND 2000/12/14:2005/12/31[DP] | Find all documents containing the word 'water' in the abstract which have a Publication Date between Dec 14, 2000 and Dec 31, 2005. |
| water[TI] NOT disease | Find all documents containing the word 'water' in the title, but do not include any documents which have the word 'disease' in any field (e.g., title, abstract, or specification/description). |
| (water OR disease) AND (borne OR resistant) | Find all documents that contain either the word 'water' or the word 'disease', and which also contain either the word 'borne' or the word 'resistant.' Note that without the parenthesis this query would be interpreted in an entirely different manner. |
| [with word stemming on] electroplate | Find all forms of the word 'electroplate', including 'electroplated', 'electroplating', and 'electroplater'. |
| "Water disease"~5 | Find all documents containing the word 'water' within 5 words of 'disease', in any fields (e.g., title, abstract, or body). The "5" may be replaced with any whole number. |
| cat^5 OR disease | Water is 5 times more important to the relevancy of documents than disease. Find all documents containing the word 'water' or 'disease' but, all other things being equal, rank the documents containing water higher. The "5" may be replaced with any whole number. |
| electron* | Find all documents containing words starting with electron like electron, electrons, electronic, electronics, etc. |
| su? | Find all documents containing words that has only one character after 'su' like sub, sun, sum, etc. |
Search Fields
| Field Abbreviation | Field Name | Description |
Example Search |
| 1AU | First Author | The first personal author name listed for a record. |
|
| AB | Abstract Text | Text included in the "abstract" and "other abstract" (if supplied) fields of a record. For PubMed articles, English language abstracts are taken directly from the published article. If an article does not have a published abstract, PubMed does not create one. |
|
| AD | Affiliation | The institutional affiliation and address (including e-mail address) of the first author of the article as it appears in the journal. This field can be used to search for work done at specific institutions. |
|
| ADP | Article Date Published | This is typically a date the article was published in electronic format, often times before the Journal Date Published. |
|
| ALL | All Fields | Searches against all search fields. NOTE: This is the default search field if no field is specified. |
|
| AU | Author | Searches all authors for an article. To search just the first author of a record, use [1AU]. Note: The [AU] behaves exactly the same as the [FAU] field. |
|
| CN | Corporate Author | The corporate or collective authorship of an article. Corporate names display exactly as they appear in the journal. |
|
| DP | Publication Date | The date that the article was published. |
|
| DTRE | Date Revised | The date a change was last made to a record as a result of NLM's individual or global maintenance. NOTE: This date is supplied by the NLM and they inform users not to "depend on [the] initial presence of [this date] or [a] change to [this date's] value to indicate that a record has been maintained." |
|
| EDP | Earlier Date Published | This is the earlier of the Print Publication Date or the Electronic Publication Date. |
|
| FAU | Full Author Name | Searches all authors for each record. To search just the first author of a record, use [1AU]. Note: The [FAU] field behaves exactly the same as the [AU] field. |
|
| FIR | Investigator/Collaborator Name | The full investigator or collaborator name for articles, if available. |
|
| GR | Grant Number | Research grant numbers, contract numbers, or both that designate financial support by any agency of the US PHS (Public Health Service), several United Kingdom granting agencies and other funding sources. |
|
| IP | Issue | The number of the journal issue in which the article was published. |
|
| JIDP | Journal Date Published | This is the date the document appeared in a printed journal. |
|
| IR | Investigator/Collaborator Name | Names of principal investigator(s) or collaborators who contributed to the research. |
|
| JID | NLM Unique Identifier | The alpha-numeric identifier for the cited journal that was assigned by NLM's Integrated Library System. |
|
| LA | Language | The language in which the article was published. Note: Many non-English articles have English language abstracts. You can either enter the language or enter just the first three characters of most languages, e.g., chi [la] retrieves the same as chinese [la]. The most notable exception is jpn [la] for Japanese. |
|
| LASTAU | Last Author | The last personal author name in a citation. |
|
| LID | Location ID | The DOI or publisher ID that serves the role of pagination to locate an online article. |
|
| MAJR | MeSH Major Topic | A MeSH term that is one of the main topics discussed in the article. |
|
| MH | MeSH Terms | All MeSH terms related to the article. |
|
| NM | Substance Name | The name of a chemical discussed in the article. |
|
| OT | Other Term | Mostly non-MeSH subject terms (keywords), including NASA Space Flight Mission, assigned by an organization other than NLM. |
|
| OWNER | Owner | Acronym that identifies the organization that supplied the citation data. |
|
| PG | Pagination | Enter only the first page number on wihch the article appears. The citation will display the full pagination of the article but this field is searchable using only the first page number. |
|
| PL | Place of Publication | Indicates the cited journal's country of publication. Geographic Place of Publication regions are not searchable. In order to retrieve records for all countries in a region (e.g., North America) it is necessary to OR together the countries of interest. Note: This field IS included in All Fields or Text Word retrieval. |
|
| PMID | Unique ID | PubMed Unique Identifier PMID. |
|
| PS | Personal Name as Subject | Use this search field tag to limit retrieval to where the name is the subject of the article |
|
| PT | Publication Type | Describes the type of material the article represents (e.g., Review, Clinical Trial, Retracted Publication, Letter.) |
|
| RN | EC/RN Number | Number assigned by the Enzyme Commission (EC) to designate a particular enzyme or by the Chemical Abstracts Service (CAS) for Registry Numbers |
|
| SB | Subset | Method of restricting retrieval by topic, citation status and journal/citation subsets. |
|
| SFM | Space Flight Mission | The Space Flight Mission identifier for the record. |
|
| SH | MeSH Subheadings | MeSH terms flagged as subheadings in the record. |
|
| SI | Secondary Source ID | The SI field identifies secondary source databanks and accession numbers, e.g., GenBank, GEO, PubChem, ClinicalTrials.gov, ISRCTN. The field is composed of the source followed by a slash followed by an accession number and can be searched with one or both components. |
|
| TA | Journal Title | The journal title abbreviation, full journal title, or ISSN number. |
|
| TI | Title | Words and numbers included in the title of a citation. |
|
| TIAB | Title/Abstract | Words and numbers included in the title, abstract, and other abstract of a citation. English language abstracts are taken directly from the published article. If an article does not have a published abstract, PubMed does not create one. |
|
| TT | Transliterated Title | Words and numbers in title originally published in a non-English language, in that language. Non-Roman alphabet language title are transliterated. |
|
| TW | Text Words | Searches against all search fields. Note: This is the same as the [ALL] field. |
|
| VI | Volume | The number of the journal volume in which an article is published. |
|
| Fields related to comments and correction | |||
| Field Abbreviation | Field Name | Description |
Example Search |
| partialretractionin | Partial Retraction In | Cites the reference containing a partial retraction of the article; began use in 2007. |
|
| partialretractionof | Partial Retraction Of | Cites the article being partially retracted; began use in 2007. |
|
| republishedfrom | Republished From | Cites the original article subsequently corrected and republished; began use in 1987. |
|
| republishedin | Republished In | Cites the final, correct version of a corrected and republished article; began use in 1987. |
|
| retractionof | Retraction Of | Cites the article being retracted; began use in August 1984. |
|
| retractionin | Retraction In | Cites the reference containing a retraction of the article; began use in August 1984. |
|
| updatein | Update In | Cites the reference containing an update to the article; began limited use in 2001. |
|
| updateof | Update Of | Cites the article being updated; limited use; began limited use in 2001. |
|
| summaryforpatientsin | Summary For Patients In | Cites the reference containing a patient summary article; began use in Nov. 2001 |
|
| originalreportin | Original Report In | Cites a scientific article associated with a patient summary. |
|
| republishedin | Republished In | Cites the subsequent (and possibly abridged) version of a republished article; began use in 2006. |
|
| republishedfrom | Republished From | Cites the first, originally published article; began use in 2006. |
|
| commentin | Comment In | Cites the reference containing a comment about the article; began use with journal issues published in 1989. |
|
| commenton | Comment On | Cites the reference upon which the article comments; began use with journal issues published in 1989. |
|
| erretumin | Erratum In | Cites the reference containing a published erratum to the article; began use in 1987. |
|
| erratumfor | Erratum For | Cites the original article for which there is a published erratum. |
|