Jump to content

Return true from a stored procedure


raydona

Recommended Posts

Hi, I have never created a stored procedure so please bear with me. I wish to create a stored procedure where if a condition is met true is returned, else false is returned, something like:

CREATE PROCEDURE SomeName(IN X VARCHAR(15), IN Y VARCHAR(30))

BEGIN

SELECT A, B

FROM Table

//Go through table and

IF A == X AND B == Y return true, else return false

END;

 

How can I achieve this? Further, how can I display the bool result in the statement:

  $res = mysql_query("call SomeName($textA, $textB)");

  if (!mysql_query($res,$con))

  { die('Error: ' . mysql_error());

  }

I will be grateful for all help.

::)

Link to comment
Share on other sites

procedure sp_test(blah, blah)
begin

declare a INT default 0;
DECLARE b INT DEFAULT 0;
DECLARE answer INT DEFAULT 0;

SELECT a,b INTO a,b FROM table;

IF (a=X AND b=Y) THEN
SET answer = 1;
ELSE
SET answer = 0;
END IF;

SELECT ANSWER;

end;

 

you could change the int for a bool, but you get the idea ! :-)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.