mysql常用的信息查询函数
时间:2021-07-01 10:21:17
帮助过:22人阅读
select version();
--当前数据库服务器版本信息
select database();
--当前使用的数据库
select current_user()
或 select user();
--当前用户
select curdate()
select current_date --当前日期
select curtime()
select current_time()
--当前日期+时间
show tables; --显示所有的表
show databases; --显示所有的库
show create database db_;
--查看标准建库语句
show create table tb_name;
--查询标准建表语句
show full columns
from studentinfo
--查看表字段信息
mysql常用的信息查询函数
标签:student sel 常用 ase current 日期 时间 base 用户