创建
创建拥有三个字段的表单
create table qq(id int primary key auto_increment ,username varchar(100) ,password varchar(100)
)DEFAULT CHARSET=utf8mb4;
关于编码问题,如果显示问号,则可以在后面加个utf8
CREATE TABLE IF NOT EXISTS `father_module_info` (`id` int(11) DEFAULT NULL,`module_name` char(66) DEFAULT NULL,`show_order` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
删除:
删除数据库:
DROP DATABASE 数据库名;
删除表单:
DROP TABLE 表单名;
关于字段
创建表单并添加单个数据
Create table Student( Sno varchar(10) primary key )
向表单中添加字段
alter table Student add Sne varchar(10) not null
alter table Studentadd axba varchar(10) not null
alter table Student add time int notnull
在表单中删除字段
alter table Student drop column axba;
修改字段
ALTER TABLE user MODIFY email VARCHAR(20) NOT NULL;
关于内容
向单个表添加一行内容
insert INTO user(user, password) values (‘liuxing’,‘123456’);
修改某行中的单个数据
update Student set Sne=‘啊啊啊’ where Sno=‘张三’
删除某一列的信息:
delete from student where name=’tom’;
创建关联表
创建user表
create table user (id int primary key auto_increment,username varchar(200) not null,birthday datetime DEFAULT null,sex char(1) DEFAULT null,address varchar(200) DEFAULT null
)DEFAULT CHARSET=utf8mb4;
创建外联user的account表
create table account (id int primary key not null,uid int DEFAULT null,money double DEFAULT null,foreign key(uid) REFERENCES user(id)
)DEFAULT CHARSET=utf8mb4;