
   EXAMPLES (Smart Search):
   ---  papers by bowie before 1994
   ---  books about hiv
   ---  papers about nucleoside by 
         ishaq between 1970 and 1995


   EXAMPLES (SQL Abbreviated):
   ---  where year_pub<1994
   ---  where Title like '%HIV%'
   ---  where (Authors like '%Ishaq%')
         and (Keywords like '%Nucleo%')
         and (Year between 1970 and 1995)


   EXAMPLES (SQL Full):
   ---  select bib.*, folder.*, fld_bib.* 
         from bib, folder, fld_bib where 
         (folder.Folder<>'Boronic Acid') 
         and (fld_bib.Folder_ID=Folder.Folder_ID) 
         and (bib.Ref_ID=fld_bib.Ref_ID)