MYSQL custom function to determine whether it is a positive integer example code

MYSQL custom function to determine whether it is a positive integer example code

You can write a function: Mainly use regular expressions to make judgments. If the input character is empty, use "-" to replace it.

CREATE FUNCTION [dbo].[svf_NonNegativeInteger] (
 @val NVARCHAR(4000)
) RETURNS BIT
AS
BEGIN
  DECLARE
  @rtv BIT = 1
  SET @val = ISNULL(LTRIM(RTRIM(@val)), N'-')
  IF @val LIKE '%[^0-9]%' OR @val = N''
   SET @rtv = 0
  ELSE
   SET @rtv = 1
  RETURN @rtv
END

Example description:

Summarize

The above is the example code of the MYSQL custom function to determine whether it is a positive integer. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • MySQL custom function CREATE FUNCTION example
  • In-depth explanation of creating custom functions and stored procedures in MySQL
  • MySQL Chinese character conversion pinyin custom function and usage examples (first letter of the first word)
  • A brief discussion on mysql custom functions
  • How to use custom functions to extract numbers from strings in MySQL
  • Problems with creating custom functions in mysql
  • Simple usage examples of MySQL custom functions
  • Detailed explanation of the definition and usage of MySQL stored functions (custom functions)
  • Detailed explanation of MySQL custom functions and stored procedures
  • MySQL uses custom functions to recursively query parent ID or child ID
  • Analysis of the principle and usage of MySQL custom functions

<<:  How to install Django in a virtual environment under Ubuntu

>>:  How to completely uninstall iis7 web and ftp services in win7

Recommend

JavaScript realizes the effect of mobile modal box

This article example shares the specific code of ...

Native JS realizes uniform motion of various sports

This article shares with you a uniform motion imp...

How to recover accidentally deleted messages files in Linux

If there are files that are being used by a proce...

Linux server quick uninstall and install node environment (easy to get started)

1. Uninstall npm first sudo npm uninstall npm -g ...

A brief discussion on macrotasks and microtasks in js

Table of contents 1. About JavaScript 2. JavaScri...

Detailed analysis of GUID display issues in Mongodb

Find the problem I recently migrated the storage ...

How to use MySQL covering index and table return

Two major categories of indexes Storage engine us...

Unbind SSH key pairs from one or more Linux instances

DetachKeyPair Unbind SSH key pairs from one or mo...

A brief discussion on size units in CSS

The compatibility of browsers is getting better a...

Mybatis implements SQL query interception and modification details

Preface One of the functions of an interceptor is...

How to build Git service based on http protocol on VMware+centOS 8

Table of contents 1. Cause 2. Equipment Informati...

A commonplace technique for implementing triangles using CSS (multiple methods)

In some interview experiences, you can often see ...

How to remotely log in to the MySql database?

Introduction: Sometimes, in order to develop a pr...