基本代码
建库指令
show databases; 查当前系统下所有可见库
create database [if not exists] DATABASE_NAME; 创建【如果不存在】数据库
drop database [if exists] DATABASE_NAME; 删除[如果存在]数据库
use DATE_NAME; 进入数据库
#建表
show tables; 查看当前库中的所有表
create table TABLENAME(
FILEDNAME [unsigned] datatype [not null,default(VALUE),auto_increnment,primary key,unique key],
…
);
#一般情况下:每张表都有一个无意义的自增列(begin:1,step:1)作为主键
#为什么每张表都要有主键:因为自动创建聚族索引
#为什么主键是自增列:因为可以更好的确保主键的唯一特性
#为什么需要主键无意义:因为有意义的字段具有不确定因素
#查看表设计
desc TABLENAME;
#删除表
drop table [if exists] TABLENAME;
本文地址:https://blog.csdn.net/RacardoMlu/article/details/107141874