您的当前位置:首页正文

sql基础增删查改的语句

2024-11-10 来源:个人技术集锦
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
  1. 向这个表里插入数据
    增/插入
insert into account(id username, password) values
    (1,张安,123),
    (2,李静,123);
    -- 在没有设置的情况下,id会自动加1
  1. 将张安的密码改为456
update account set password=456 where username=张安;
SELECT *FROM account ; -- 查询整张表/idea直接在database中双击表
  1. 删除
delete from account where username=张安;-- 删除一行数据
drop table if exists `account`;-- 删除整张表 
delete from account;-- 删除整张表的数据
显示全文