Using Mysql function to realize code _MYSQL for judging video extension

Source: Internet
Author: User
Copy Code code as follows:

Delimiter | |

DROP FUNCTION IF EXISTS is_mobile| |
CREATE FUNCTION is_mobile (x VARCHAR (255)) RETURNS TINYINT (1)
BEGIN
DECLARE result TINYINT (1) DEFAULT 0;
SET x = LCASE (x);
IF Right (x,4) = '. mp4 ' THEN
SET result = 1;
ELSEIF Left (x,9) = ' [Ctvideo] ' THEN
SET result = 1;
End IF;
return result;
End;

delimiter;

Note:
This method has a scenario that I use to make a mark in the Sphinx index such as:

SELECT is_mobile (' Http://www.jb51.net/demo/test.mp4 ') as M
If the use of a large number of front-end, will increase the pressure of MySQL, the proposal or the script to complete.
I personally also only a temporary solution, later will be upgraded by the way the system to complete the program.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.