MySQL often uses functions

Source: Internet
Author: User
Tags abs first string rand strcmp

-----------------------------String Function---------------------------------------

----stitching strings. No matter what string and null concatenation is NULL
Select Concat (' AAA ', ' BBB ', ' CCC '), concat (null, ' AAA ');



----Replace the three characters starting with the 12th character with me
Select Insert (' Beijing2008you ', 12,3, ' me ');




----Subscript start from 1
Select Insert (' Beijing ', +, ' oo ');




---uppercase and lowercase conversions
Select lower (' Beijing '), UPPER (' Beijing ');


---repeatedly
Select repeat (' MySQL ', 3);



---Remove the spaces on both sides and remove the left side space. Remove right side repeatedly
Select Trim ("Simba"), LTrim ("Simba"), RTrim ("Simba");




---n characters on the left side of the output, n characters on the right side, and NULL if n is null
Select Left (' beijing2008 ', 7), left (' Beijing ', null), right ("beijing2008", 4);



-----The leftmost character with the rightmost padding, knowing that the length is n
Select Lpad (' + ', ' ten ', ' Beijing '), Rpad (' n ', ', ' Beijing '), Lpad (' 4 ', ' Beijing ');


----Replacement string
Select replace (' Beijing ', ' I ', ' o ');


----The first string and the second size
Select strcmp (' BC ', ' BS '), strcmp (' B ', ' B '), strcmp (' C ', ' B ');


-----Returns a substring of Y-character length from the X-position of the string.

Select substring (' beijing2008 ', 8,4), substring (' beijing2008 ', 1,7);


------------------------------Numeric function----------------------------------


-----absolute value, the string is 0
Select ABS (4), ABS (4-5), ABS (' A '-' B ');


-----Returns the smallest integer greater than X
Select Ceil ( -0.8), Ceil (0.8), ceil (2.0);


----Returns the largest integer less than x. It's just the opposite of Ceil.
Select Floor ( -0.8), floor (0.8);


-----NULL for whatever one of the parameters results is null
Select mod (15,10), mod (1,11), mod (null,10);




------produces a random number between 0 and 1.
Select rand (), Rand () *10;


Select Ceil (rand () *100), Floor (rand () *100);




---Returns the first number after rounding. Several after the decimal point
Select Round (1.1), round (1.567,2), round (on);


-----truncation x equals decimal place only one
Select truncate (123.284,1);




-------Date and Time functions--------------------------------------


----Current date Time
Select Curdate ();


Select Curtime ();


Select Now ();


-----Returns the UNIX timestamp for date

Select Unix_timestamp (now ());



----return a time stamp corresponding to the time
Select From_unixtime (132454);


-----The week ordinal of the year. The first few years, hours and minutes

Select Week (now ()), Year (now ()), Hour (now ()), Minute (now ());



----Return Month in English
Select MonthName (now ());


-----Formatting Date
Select Date_format (now (), '%m,%d%y ');


----days of difference between two days

Select DateDiff ("2014-05-10", now ());



------The current date, the current date plus 31 days the next two months after one year of the current date interval= spacing
Select Now (), Date_add (today (), Interval Day), Date_add (now (), Interval ' 1_2 ' year_month);



-------Other----

Select Version ()


Select Database (), User ()




------Convenient IP or network segment comparison
-----The number that returns the IP address

Select Inet_aton (' 192.168.8.11 ')



---Returns the IP address of the number
Select Inet_ntoa (3452233445);



--Returns the form after the digital encryption
Select Password (123456);

Select MD5 (123456);



MySQL often uses functions

Related Article

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.