Databases| SQL| MySQL| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
SQL Simple LOOP 
 

Simple LOOP in Procedure is a series of statement that are executed repeatedly until it push the flow of control to outside of the loop.

 

SQL Simple LOOP

                         

Simple LOOP in Procedure is a series of statement that are executed repeatedly until it push the flow of control to outside of the loop.

Understand with Example

The Tutorial illustrate an example from 'SQL Simple Loop'. To grasp this example, we create a procedure display that accept variable no as input parameter and the data type is int. The Begin include a loop that define a variable counter  and set its data type to int. The Loop run repeatedly until it push the flow of control to outside of the loop. 

Create Procedure

DELIMITER $$
DROP PROCEDURE IF EXISTS display$$
CREATE PROCEDURE display(no int)
    BEGIN
	DECLARE counter INT DEFAULT 1;
	simple_loop: LOOP
	SET counter=counter+1;
	
		select counter;
	IF counter=no THEN
		LEAVE simple_loop;
	END IF;
	END LOOP simple_loop;
    END$$
DELIMITER ;

Call Procedure

The call display(5) invoke a procedure display that accept input parameter no as '5'.

call display(5);

Result

+---------+
| counter |
+---------+
| 2       |
+---------+
1 row in set (0.00 sec)
+---------+
| counter |
+---------+
| 3       |
+---------+
1 row in set (0.03 sec)
+---------+
| counter |
+---------+
| 4       |
+---------+
1 row in set (0.08 sec)
+---------+
| counter |
+---------+
| 5       |
+---------+
1 row in set (0.13 sec)
Query OK, 0 rows affected (0.19 sec)

                         

» View all related tutorials
Related Tags: sql mysql c string com function fun io sed const char int ai padding length character case cas if ie

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Training Courses
Tell A Friend
Your Friend Name
Software Solutions
Least Viewed
Most Rated
Recently Viewed
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.