摘要: -- 判断是否有数据库 drop database if exists testDB; -- 新建数据库 create database testDB; -- 使用数据库 use testDB; -- 判断表是否存在 drop table if exists tb_user; -- 新建表+注释 c 阅读全文
posted @ 2020-03-15 22:16 itch 阅读(185) 评论(0) 推荐(0)