摘要: MySQL数据库常用命令 一、操作数据库命令 创建数据库 create database [if not exists] school; 删除数据库 drop database [if not exists] school; 使用数据库 use school; 查看数据库 show database 阅读全文
posted @ 2025-11-02 15:32 RenHaonan 阅读(8) 评论(0) 推荐(0)