之前linux上装的mysql,最近没使用了,甚至快连密码都忘记了☃,
好记性,不如烂笔头,记录一下。
首先检查mysql的状态:
service mysql status
进入mysql:
mysql -u root -p password
成功则提示“Welcom to the MySQL monitor.”
并显示mysql的版本:Server version: 5.6.43....
1、显示数据库列表。
show databases;
2.使用库:test库
use test;
3.显示所有的数据表:
show tables;
4.显示数据表的结构:
describe user;
5.查询数据:
select * from user;
6.建库
create database 库名;
7.建表:
use 库名;
create table 表名(字段设定列表);
8.删库和删表:
drop database 库名;
drop table 表名;
9.退出mysql
quit或者exit
网友评论