LoginSignup
4
5

More than 5 years have passed since last update.

MySQL ファンクション(述語)

Last updated at Posted at 2014-03-14
Function@MySQL
CREATE FUNCTION `f-resource-p`(
   resource INT
) RETURNS tinyint(1)
BEGIN

  DECLARE cnt INT;

  SELECT count(*) INTO cnt 
    FROM schema.rs_resource
   WHERE `resource-id` = resource;

  IF cnt=0 THEN
     RETURN FALSE;
  END IF;

  RETURN TRUE;

END
4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5