MOVED mysql/person_get_action_type.sql to mysql/core_person_get_action_type.sql
authorAlan Knowles <alan@roojs.com>
Tue, 11 Oct 2016 03:06:29 +0000 (11:06 +0800)
committerAlan Knowles <alan@roojs.com>
Tue, 11 Oct 2016 03:06:29 +0000 (11:06 +0800)
mysql/core_person_get_action_type.sql [new file with mode: 0644]

diff --git a/mysql/core_person_get_action_type.sql b/mysql/core_person_get_action_type.sql
new file mode 100644 (file)
index 0000000..dcd3680
--- /dev/null
@@ -0,0 +1,13 @@
+
+DROP FUNCTION IF EXISTS person_get_action_type;
+
+DELIMITER $$
+CREATE FUNCTION person_get_action_type(in_id INT(11))  RETURNS VARCHAR(32) DETERMINISTIC
+    BEGIN
+        
+        DECLARE v_ret VARCHAR(32);
+        SET v_ret= '';
+        SELECT action_type INTO v_ret  FROM Person WHERE id = in_id  LIMIT 1;
+        RETURN v_ret;
+    END $$
+DELIMITER ;