MySQL database 8 - detailed explanation of the application of functions in the database

MySQL database 8 - detailed explanation of the application of functions in the database

Use of built-in functions in the database

This article mainly introduces the use of built-in functions in the database, mainly date functions, string functions, and mathematical functions.

1. Date functions

select current_date();//Get the current date, year, month, and dayselect current_time();//Get the current time, hours, minutes, and secondsselect current_timestamp();//Get the current year, month, day, hours, minutes, and secondsselect date('2017-10-28');//Get the parameter dateselect date_add('2017-10-28', interval 10 day);//Add the specified year/month/day to the parameter dateselect date_sub('2017-10-28', interval 10 day);//Subtract the specified year/month/day from the parameter dateselect datediff('2017-10-10', '2016-9-1');//Calculate the number of days between two dates

(II) String functions

(III) Mathematical functions

Other functions

  1. user() Query the current user
  2. md5(str) performs md5 digest on a string and obtains a 32-bit string after digest
  3. database() displays the database currently in use
  4. password() function, which is used by MySQL database to encrypt user
  5. ifnull(val1, val2) If val1 is null, returns val2, otherwise returns the value of val1
 //user() queries the current userselect user();
 
 //md5(str) performs md5 digest on a string and obtains a 32-bit string after digest select md5('admin')
 
 //database() displays the database currently in use select database();

 //password() function, MySQL database uses this function to encrypt users select password('root');
 
 //ifnull(val1, val2) If val1 is null, return val2, otherwise return the value of val1 select ifnull('abc', '123'); // abc is not null, so return abc

The above is what I introduced to you: MySQL Database 8 - Detailed explanation and integration of the application of functions in the database. 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 implement scheduled backup of MySQL database
  • A brief analysis of using JDBC to operate MySQL requires adding Class.forName("com.mysql.jdbc.Driver")
  • Import backup between mysql database and oracle database
  • The simplest online question bank (online question system) developed by php+mysql
  • Detailed explanation of how a SQL statement is executed in MySQL
  • Detailed explanation of mysql download and installation process
  • Summary of MySQL LOAD_FILE() function method
  • MySQL 8.0.15 download and installation detailed tutorial is a must for novices!
  • Viewing and analyzing MySQL execution status
  • The use of mysql unique key in query and related issues

<<:  How to resize partitions in CentOS7

>>:  Detailed explanation of vue simple notepad development

Recommend

js simple and crude publish and subscribe sample code

What is Publish/Subscribe? Let me give you an exa...

Docker Machine in-depth explanation

Differences between Docker and Docker Machine Doc...

Centos7 installation of Nginx integrated Lua sample code

Preface The computer I use is a Mac, and the oper...

js array fill() filling method

Table of contents 1. fill() syntax 2. Use of fill...

Method of building redis cluster based on docker

Download the redis image docker pull yyyyttttwwww...

Docker deploys mysql to achieve remote connection sample code

1.docker search mysql查看mysql版本 2. docker pull mys...

How to uninstall MySQL cleanly (tested and effective)

How to uninstall Mysql perfectly? Follow the step...

Ideas and codes for implementing waterfall flow layout in uniapp applet

1. Introduction Is it considered rehashing old st...

How to use VUE and Canvas to implement a Thunder Fighter typing game

Today we are going to implement a Thunder Fighter...

Analysis of the cause of docker error Exited (1) 4 minutes ago

Docker error 1. Check the cause docker logs nexus...

The principles and defects of MySQL full-text indexing

MySQL full-text index is a special index that gen...

Installation tutorial of MySQL 5.1 and 5.7 under Linux

The operating system for the following content is...

React Native startup process detailed analysis

Introduction: This article takes the sample proje...