-
1、DEFAULT:默认值 2、当插入记录时,如果没有明确为字段赋值,则自动赋予默认值,如DEFAULT 5;查看全部
-
1、UNIQUE KEY:唯一约束 2、每张数据表可以存在【多个唯一约束】 3、用于保证记录的唯一性 3、【可以为NULL】查看全部
-
主键PRIMARY KEY 1.主键约束 2.每张数据表只能存在一个主键 3.主键保证记录的唯一性 4.主键自动为NOT NULL;查看全部
-
select select_expr [from table name where where_condtion ]; select id as usersid,username as uname from users;//别名的使用,AS可以不写,但是推荐写上查看全部
-
delete from table_name where .... delete from users where id=6;查看全部
-
自动编号AUTO_INCREMENT 1、自动编号:保证记录的唯一性 2、类型必须为整型(可以说FLOAT(5,0)等,但不能是小数),必须和主键PRIMARY KEY组合使用 3、默认情况下,起始值为1,每次的增量为1查看全部
-
update [low_priority][ignore] table_name set colname=[expr|default][...] [where..] update table users set age = age+5; update user set age = age-id,sex=0; update后面不跟table update users set age=age+10 where id%2=0;查看全部
-
insert tablename col_name ={expr|default},... insert users username='weenxin',passwd='123'; insert table table_name select ....查看全部
-
1.插入数据:insert into 表名 (列名) values(值); 2.查找数据:select * from 表名;查看全部
-
show tables; 查看数据表 查看数据表结构:show columns from 表名;查看全部
-
SHOW TABLES [FROM DATABASE];查看全部
-
1.使用数据库:use 数据库名称; 2.创建数据库:create table 表名( 列名 数据类型, 列名 数据类型 )查看全部
-
alter table user4 modify age tinyint unsigned first; alter table user4 rename to user2; rename table user2 to user4;查看全部
-
alter table user4 drop foreign key key_name(not column_name);查看全部
-
字符型查看全部
举报
0/150
提交
取消