MySQL strcmp() Function Number Value Example
Open your MySQL Query Editor then copy & paste the below code to get the value of strcmp() MySQL Function Number Value Example:
-- mysql strcmp() function compares exactly two values, Number Value Example select strcmp(22, 33), strcmp(33, 11), strcmp(0, 0), strcmp(-1, -2), strcmp(-1, -2/0); -- The mysql strcmp() function returns 0 ifequals -- mysql strcmp() function returns -1 if is smaller than -- The mysql strcmp() function returns 1 if larger than -- OR if the comparison returns a NULL -- mysql strcmp() function returns NULL if or is NULL
-- is comment in MySQL -- in fact it is comment in MSSQL and Oracle as well
MySQL strcmp() Function Number Value Example - Result in MySQL Query Editor
Related Tutorial Examples
- MySQL isnull() Function Example
- MySQL strcmp() Function NULL Value Example
- MySQL strcmp() Function Example :: on Equals,Large.. Values
- MySQL interval() Function Example
- MySQL coalesce() Function Example
- MySQL IF() Function Boolean Value Example
- MySQL Stored Procedure: Variable Example
- MySQL Stored Procedure: Batch Salary Increment Example
- Creating Database(s) using SQL Command MySQL Example
- MySQL sample database script: Create Database using SQL Statement Example

No comments:
Post a Comment
leave your comments here..