Jump to content

Stored functions, (how to check num_rows())


neller

Recommended Posts

Hi,

 

Say I had the following stored function (just a quick demo it does nothing)

 

BEGIN
  SELECT `name` FROM `customers` WHERE `name` = var_name
END

 

How would I check within a procedure how many rows where returned? so if > 0 I can run another query within the function, for example (and this obviously wont work)

 

BEGIN
  SELECT `name` FROM `customers` WHERE `name` = var_name
  IF > 0  another query here
END

 

thanks in advance

 

ps... alternatively if anybody knows a good tutorial / book on things like the above #i'm more than happy to find it myself.

Link to comment
https://forums.phpfreaks.com/topic/180839-stored-functions-how-to-check-num_rows/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.