SQL 记录的简单操作

1、插入记录

insert into table table_name (可填需要添加的参数) values(对应参数及其类型)
例如下:
SQL语句对于记录的简单操作

2、删除记录

delete from table_name where (条件);

3、查看记录

select *from table_name;

4、修改记录

update table_name set (条件) where (更改数据)

相关文章:

  • 2021-09-16
  • 2022-01-05
  • 2022-12-23
  • 2021-10-24
  • 2022-12-23
  • 2021-07-28
猜你喜欢
  • 2021-05-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-12
  • 2021-11-22
  • 2021-11-05
相关资源
相似解决方案