MySQL内置函数-版本用户等函数
Posted hopeless-dream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL内置函数-版本用户等函数相关的知识,希望对你有一定的参考价值。
查看版本信息
mysql> select version(); +-----------+ | version() | +-----------+ | 8.0.18 | +-----------+ 1 row in set (0.00 sec)
查看当前数据库
mysql> select database(); +------------+ | database() | +------------+ | world | +------------+ 1 row in set (0.00 sec)
查看当前用户
mysql> select user(); +----------------+ | user() | +----------------+ | root@localhost | +----------------+ 1 row in set (0.00 sec)
查看uuid
UUID一共五部分:
- 前三部分是根据时间戳生成的
- 第四部分是保留时间的唯一性
- 第五部分是根据网卡生成的
mysql> select uuid(); +--------------------------------------+ | uuid() | +--------------------------------------+ | ac8a84eb-aacc-11ea-b4fc-000c295e277d | +--------------------------------------+ 1 row in set (0.00 sec)
以上是关于MySQL内置函数-版本用户等函数的主要内容,如果未能解决你的问题,请参考以下文章