Home Sql Simple Procedure to display Hello World



Simple Procedure to display Hello World
Posted on: December 20, 2008 at 12:00 AM
Procedure is a set of SQL statement enclosed in 'BEGIN' and 'END' statement and executed under one name.

Simple Procedure to display Hello World

     

Procedure is a set of SQL statement enclosed in 'BEGIN' and 'END' statement and executed under one name.

Understand with Example

The Tutorial illustrate an Example from Simple Procedure that helps you to display 'Hello World'. In this Example, we create a procedure 'abc' using  create procedure statement. The select statement return you the 'Hello,World' ,whenever a procedure 'abc' is invoked.

Create a Procedure

delimiter $$
create procedure abc()
BEGIN 
	SELECT 'Hello,World' world';
END$$
delimiter ;
Call procedude
The callprocedure abc ( ) is used invoke procedure 'abc'.
call abc();

Result

+--------------+
| Hello, world |
+--------------+
| Hello, world |
+--------------+

Related Tags for Simple Procedure to display Hello World:
sqlcsedexecstatenamesetexecloseexecutestatementproceprocedureceinstamntosclosedosclemendmeprocutsxeginatisduandstatclosssrocbeginstprndono


More Tutorials from this section

Ask Questions?    Discuss: Simple Procedure to display Hello World  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.