*************************************************************
0. contains
select title, _matchscore from journalcits where title contains 'morphine' 
	order by _matchscore, authorlist, pmid limit 5 

Genetic_determinants_of_morphine_activity_and_thermal_responses_in_15_inbred_mouse_strains. 00 
Sex_differences_in_supraspinal_morphine_analgesia_are_dependent_on_genotype. 00 
*************************************************************
1. contains
select title, _matchscore from journalcits where title contains 'morphine gene' 
	order by _matchscore, authorlist, pmid limit 10 

Genetic_determinants_of_morphine_activity_and_thermal_responses_in_15_inbred_mouse_strains. 02 
A_mutation_in_the_Ter_gene_causing_increased_susceptibility_to_testicular_teratomas_maps_to_mouse_chromosome_18. 05 
Gene_ontology:_tool_for_the_unification_of_biology._The_Gene_Ontology_Consortium. 05 
Gene_trees_and_the_origins_of_inbred_strains_of_mice. 05 
Human_and_mouse_gene_structure:_comparative_analysis_and_application_to_exon_prediction. 05 
A_new_sodium_channel_alpha-subunit_gene_(Scn9a)_from_Schwann_cells_maps_to_the_Scn1a,_Scn2a,_Scn3a_cluster_of_mouse_chromosome_2. 05 
Natural_killer_gene_complex_(Nkc)_allelic_variability_in_inbred_mice:_evidence_for_Nkc_haplotypes. 05 
Gene_expression_profiling_using_a_novel_method:_amplified_differential_gene_expression_(ADGE). 05 
Frequent_disruption_of_the_Nf1_gene_by_a_novel_murine_AIDS_virus-related_provirus_in_BXH-2_murine_myeloid_lymphomas. 05 
Intrinsic_and_extrinsic_control_of_hemopoietic_stem_cell_numbers:_mapping_of_a_stem_cell_gene. 05 
*************************************************************
2. contains
select title, _matchscore from journalcits where title containslike 'retina' 
	order by _matchscore, authorlist, pmid limit 5 

Anxiety-related_behaviors_in_the_elevated_zero-maze_are_affected_by_genetic_factors_and_retinal_degeneration. 01 
Genetic_and_environmental_control_of_variation_in_retinal_ganglion_cell_number_in_mice. 01 
Eye1_and_Eye2:_gene_loci_that_modulate_eye_size,_lens_weight,_and_retinal_area_in_the_mouse. 01 
*************************************************************
3. contains
select title, _matchscore from journalcits where title contains 'retina degen' 
	order by _matchscore, authorlist, pmid limit 5 

Anxiety-related_behaviors_in_the_elevated_zero-maze_are_affected_by_genetic_factors_and_retinal_degeneration. 01 
Sensorimotor_learning_and_retention_during_equilibrium_tests_in_Purkinje_cell_degeneration_mutant_mice. 06 
Genetic_and_environmental_control_of_variation_in_retinal_ganglion_cell_number_in_mice. 06 
Eye1_and_Eye2:_gene_loci_that_modulate_eye_size,_lens_weight,_and_retinal_area_in_the_mouse. 06 
*************************************************************
4. contains with a quoted term
select title, _matchscore from journalcits where title contains '"retinal degeneration"' 
	order by _matchscore, authorlist, pmid limit 5 

Anxiety-related_behaviors_in_the_elevated_zero-maze_are_affected_by_genetic_factors_and_retinal_degeneration. 00 
*************************************************************
5. contains with comma separating the terms
select authorlist, pmid, _matchscore from journalcits where authorlist contains 'smith, rs' 
	order by _matchscore, authorlist, pmid limit 5 

Hawes_NL,_Smith_RS,_Chang_B,_Davisson_M,_Heckenlively_JR,_John_SW. 10493779 00 
Savinova_OV,_Sugiyama_F,_Martin_JE,_Tomarev_SI,_Paigen_BJ,_Smith_RS,_John_SW. 11532192 00 
Savinova_OV,_Sugiyama_F,_Martin_JE,_Tomarev_SI,_Paigen_BJ,_Smith_RS,_John_SW. 11591217 00 
Ben-Smith_A,_Wahid_FN,_Lammas_DA,_Behnke_JM. 99348463 05 
Eppig_JT,_Blake_JA,_Burkart_DL,_Goldsmith_CW,_Lutz_CM,_Smith_CL. 11857778 05 
*************************************************************
6. contains: _matchscore in where clause
select authorlist, pmid, _matchscore from journalcits where authorlist contains 'smith rs' 
	and _matchscore = 0
	order by _matchscore, authorlist, pmid limit 5 

Hawes_NL,_Smith_RS,_Chang_B,_Davisson_M,_Heckenlively_JR,_John_SW. 10493779 00 
Savinova_OV,_Sugiyama_F,_Martin_JE,_Tomarev_SI,_Paigen_BJ,_Smith_RS,_John_SW. 11532192 00 
Savinova_OV,_Sugiyama_F,_Martin_JE,_Tomarev_SI,_Paigen_BJ,_Smith_RS,_John_SW. 11591217 00 
*************************************************************
7. 2 contains, OR'ed together..
select authorlist, title, _matchscore from journalcits where authorlist contains 'booth' and title contains 'mice' 
	order by _matchscore, authorlist, pmid limit 5 

Booth_CJ,_Sundberg_JP. Hemangiomas_and_hemangiosarcomas_in_inbred_laboratory_mice. 00 
*************************************************************
8. 2 contains AND'ed together..
select authorlist, title, _matchscore from journalcits where authorlist contains 'booth smith' 
	and title contains 'mice' order by _matchscore, authorlist, pmid limit 5 

Booth_CJ,_Sundberg_JP. Hemangiomas_and_hemangiosarcomas_in_inbred_laboratory_mice. 05 
Savinova_OV,_Sugiyama_F,_Martin_JE,_Tomarev_SI,_Paigen_BJ,_Smith_RS,_John_SW. Intraocular_pressure_in_genetically_distinct_mice:_an_update_and_strain_survey. 05 
Savinova_OV,_Sugiyama_F,_Martin_JE,_Tomarev_SI,_Paigen_BJ,_Smith_RS,_John_SW. Intraocular_pressure_in_genetically_distinct_mice:_an_update_and_strain_survey:_Correction. 05 
*************************************************************
9. 2 contains OR'ed together..
select authorlist, title, _matchscore from journalcits where authorlist contains 'booth johnson' 
	OR title contains 'booth johnson' 
	order by _matchscore, authorlist, pmid limit 5 

Booth_CJ,_Sundberg_JP. Hemangiomas_and_hemangiosarcomas_in_inbred_laboratory_mice. 25 
Johnson_KR,_Zheng_QY,_Bykhovskaya_Y,_Spirina_O,_Fischel-Ghodsian_N. A_nuclear-mitochondrial_DNA_interaction_affecting_hearing_impairment_in_mice. 25 
Johnson_KR,_Zheng_QY,_Erway_LC. A_major_gene_affecting_age-related_hearing_loss_is_common_to_at_least_ten_inbred_strains_of_mice. 25 
Zheng_QY,_Johnson_KR,_Erway_LC. Assessment_of_hearing_in_80_inbred_strains_of_mice_by_ABR_threshold_analyses. 25 
Zheng_QY,_Johnson_KR. Hearing_loss_associated_with_the_modifier_of_deaf_waddler_(mdfw)_locus_corresponds_with_age-related_hearing_loss_in_12_inbred_strains_of_mice. 25 
*************************************************************
10. 2 contains OR'ed together.. 
select authorlist, title, _matchscore from journalcits where authorlist contains 'booth johnson hearing' 
	OR title contains 'booth johnson hearing' 
	order by _matchscore, authorlist, pmid limit 5 

Johnson_KR,_Zheng_QY,_Bykhovskaya_Y,_Spirina_O,_Fischel-Ghodsian_N. A_nuclear-mitochondrial_DNA_interaction_affecting_hearing_impairment_in_mice. 18 
Johnson_KR,_Zheng_QY,_Erway_LC. A_major_gene_affecting_age-related_hearing_loss_is_common_to_at_least_ten_inbred_strains_of_mice. 18 
Zheng_QY,_Johnson_KR,_Erway_LC. Assessment_of_hearing_in_80_inbred_strains_of_mice_by_ABR_threshold_analyses. 18 
Zheng_QY,_Johnson_KR. Hearing_loss_associated_with_the_modifier_of_deaf_waddler_(mdfw)_locus_corresponds_with_age-related_hearing_loss_in_12_inbred_strains_of_mice. 18 
Booth_CJ,_Sundberg_JP. Hemangiomas_and_hemangiosarcomas_in_inbred_laboratory_mice. 29 
*************************************************************
11. finding null with a word index
select authorlist, title from journalcits where authorlist is null
	order by authorlist limit 5 

null Example_null_author_entry 
*************************************************************
12. GROUP BY using the curcits table
select pubtype, count(*) from curcits group by pubtype

Commentary 12 
Misc 20 
Research 104 
Review 7 
Unknown 3 
