Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Learn SQL using MySQL in One Day and Learn It Well

You're reading from  Learn SQL using MySQL in One Day and Learn It Well

Product type Book
Published in Apr 2024
Publisher Packt
ISBN-13 9781836205678
Pages 121 pages
Edition 1st Edition
Languages
Author (1):
Jamie Chan Jamie Chan
Profile icon Jamie Chan

Example

 

Let’s look at an example:

 

Suppose we want to get the names and genders of all employees in our employees table and combine them into a single line of text, here’s how we do it:

 

DELIMITER $$

CREATE FUNCTION get_employees () RETURNS VARCHAR(255) DETERMINISTIC

BEGIN

DECLARE v_employees VARCHAR(255) DEFAULT '';

DECLARE v_name VARCHAR(255);

DECLARE v_gender CHAR(1);

DECLARE v_done INT DEFAULT 0;

DECLARE cur CURSOR FOR

      SELECT em_name, gender FROM employees;

 

DECLARE CONTINUE HANDLER FOR NOT FOUND SET v_done = 1;

 

OPEN cur;

 

employees_loop: LOOP

      FETCH cur INTO v_name, v_gender;

      IF v_done = 1 THEN LEAVE employees_loop;

            ELSE SET v_employees = concat(v_employees, ', ', v_name, ': ', v_gender...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €14.99/month. Cancel anytime}