drop table if exists `account`; -- 如果有这个表就将它删除
create table if not exists `account`(
id int primary key auto_increment comment '帐号编号',
username varchar(12) not null comment '帐号',
password varchar(128) not null comment '密码'
); -- 建表
-- primary key 定义这个字段为主键。
-- auto_increment 定义这个字段为自动增长,即如果INSERT时不赋值,则自动加1
insert into account(id username, password) values
(1,张安,123),
(2,李静,123);
-- 在没有设置的情况下,id会自动加1
update account set password=456 where username=张安;
SELECT *FROM account ; -- 查询整张表/idea直接在database中双击表
delete from account where username=张安;-- 删除一行数据
drop table if exists `account`;-- 删除整张表
delete from account;-- 删除整张表的数据