SQL · Alter&show&SQL约束

参考文章: BUUCTF[强网杯 2019]随便注 的三种解法 参考题目: [强网杯 2019]随便注

alter

  1. 作用:修改已知表的列。 ( 添加:add | 修改:alter,change | 撤销:drop )
  2. 用法

(1)添加一个列

1
alter table " table_name" add " column_name"  type;

(2)删除一个列

1
alter table " table_name" drop " column_name"  type;

(3)改变列的数据类型

1
alter table " table_name" alter column " column_name" type;

(4)改列名

1
alter table " table_name" change " column1" " column2" type;
1
alter table "table_name" rename "column1" to "column2";

show

在过滤了 select 和 where 的情况下,还可以使用 show 来爆出数据库名,表名,和列名。 show datebases; //数据库 show tables; //表名 show columns from table; //字段

SQL约束

  1. not null- 指示某列不能存储 NULL 值。
1
alter table persons modify age int not null;//设置 not null 约束 
1
alter table person modify age int null;//取消 null 约束
  1. primary key - NOT NULLUNIQUE 的结合: 指定主键,确保某列(或多个列的结合)有唯一标识,每个表有且只有一个主键。
1
alter table persons add age primary key (id)
  1. unique -: 保证某列的每行必须有唯一的值。 注:可以有多个 UNIQUE 约束,只能有一个 PRIMARY KEY 约束。
1
alter table person add unique (id);//增加unique约束。
  1. check-限制列中值的范围。
1
alter table person add check (id>0);
  1. default-规定没有给列赋值时的默认值。
1
alter table person alter city set default 'chengdu' ;	//mysql
1
alter table person add constraint ab_c default 'chengdu' for city;	//SQL Server / MS Access
  1. auto_increment-自动赋值,默认从1开始。

  2. foreign key-保证一个表中的数据匹配另一个表中的值的参照完整性。

0%