MySQL-docs
MySQL-docs copied to clipboard
创建库表前检查是否存在
Database
create database if not exists student;
table
create table if not exists score {
...
};
···