Mysql数据库操作命令行小结
摘要:
-- 创建数据库 create database python_test_1 charset=utf8; -- 使用数据库 use python_test_1; -- students表 create table students( id int unsigned primary key auto_increment not null, name varchar(20) de... 阅读全文
posted @ 2019-03-25 09:09 一剑风徽 阅读(300) 评论(0) 推荐(0) 编辑