摘要: 1.查看当前所有的数据库 show databases; 2.打开指定的库 use 库名; use test; 3查看当前的库 select database(); 4.查看当前库的所有表 show tables; 5.查看其它库的所有表 show tables from 库名; show tabl 阅读全文
posted @ 2021-04-17 11:01 liv_vil 阅读(37) 评论(0) 推荐(0)