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:
|
<<: How to install Django in a virtual environment under Ubuntu
>>: How to completely uninstall iis7 web and ftp services in win7
This article example shares the specific code of ...
1. Introduction Oracle has released MySQL 8.0GA. ...
This article shares with you a uniform motion imp...
If there are files that are being used by a proce...
1. Uninstall npm first sudo npm uninstall npm -g ...
Table of contents 1. About JavaScript 2. JavaScri...
Find the problem I recently migrated the storage ...
Two major categories of indexes Storage engine us...
DetachKeyPair Unbind SSH key pairs from one or mo...
The compatibility of browsers is getting better a...
Preface One of the functions of an interceptor is...
Table of contents 1. Cause 2. Equipment Informati...
In some interview experiences, you can often see ...
Table of contents Achieve results Introduction to...
Introduction: Sometimes, in order to develop a pr...