From: lingutln Date: Thu, 30 May 2013 18:39:04 +0000 (+0000) Subject: Added the create procedure statement for import_annotated_term X-Git-Url: http://gitweb.planteome.org/?a=commitdiff_plain;h=2567eb3f2c9ff0892249e81c1a0559edb1d1bfd6;p=old-jaiswallab-svn%2F.git Added the create procedure statement for import_annotated_term svn path=/; revision=482 --- diff --git a/image_annotation_db/ia_upload/stored_procedures.sql b/image_annotation_db/ia_upload/stored_procedures.sql index fabafee..ac823ba 100644 --- a/image_annotation_db/ia_upload/stored_procedures.sql +++ b/image_annotation_db/ia_upload/stored_procedures.sql @@ -53,7 +53,7 @@ end // DROP procedure if exists import_annotated_term; delimiter // -delimiter +create procedure import_annotated_term (keyword varchar(80), ontology_term_id varchar(80)) begin insert into annotated_term (keyword, ontology_term_id) values (keyword, ontology_term_id); select last_insert_id();