首页 > 代码库 > MySQL系列:数据表基本操作

MySQL系列:数据表基本操作

1. 指定数据库

mysql> use portal;

2. 数据库表基本操作

2.1 查看数据表

mysql> show tables;

 

MySQL系列:数据表基本操作