当前位置: 代码迷 >> 综合 >> CRUD---数据库SQL操作
  详细解决方案

CRUD---数据库SQL操作

热度:14   发布时间:2023-12-14 05:30:12.0

概念:CRUD是指在做计算处理时的

- 增加(Create)、
- 读取(Retrieve)(重新得到数据)、
- 更新(Update)
- 删除(Delete)几个单词的首字母简写。

主要被用在描述软件系统中数据库或者持久层的基本操作功能。

Create

  • 增一个数据库表
create table stu(id varchar(20) primary key,name varchar(10) not null,age int(2) not null);
  • 增一行数据
insert into stu values('54110','小新',20);
  • 增一列数据
alter table stu add column phone int(11);

Retrieve

  • 查询表中所有数据
select * from stu;
  • 查询表中满足一定条件的数据
select * from stu where id = 20;

Update

  • 更新某一行的数据
update stu set age=22 where id='54110';
  • 更新某一列的数据
alter table stu modify id int(15) null;

Delete

  • 删除某一行的数据
delete from stu where id=54110;
  • 删除某一列的属性
alter table stu drop phone;
  • 删除表
drop table stu;
  • 删除数据库
drop database qbz;
  相关解决方案