随笔分类 -  数据库

摘要:1.查看当前所有的数据库 show databases; 2.打开指定的库 use 库名 3.查看当前库的所有表 show tables; 4.查看其它库的所有表 show tables from 库名; 5.创建表 create table 表名{ 列名 列类型, 列名 列类型, ... } 6. 阅读全文
posted @ 2021-08-15 21:23 新生代农民工 阅读(91) 评论(0) 推荐(0)