摘要:
MySQL表操作 一 . 查看数据库中的表格: -- 查看当前数据库中的数据表 : show tables; -- 查看指定数据库中的数据表 : show tables from 数据库名; 二 ,创建表: create table [if not exists] 表名 ( 字段名 字段类型, .. 阅读全文
2022年10月28日
摘要:
MySQL基本信息: 1. 配置文件及目录 :/etc/mysql/mysql.conf.d, 2. 用户信息及目录 :/home/用户/.bashrc >使用mima命令查看用户信息 一 . MySQLl服务基本操作: -- MySQL启动 ==> srevice mysql start; -- 阅读全文