码迷,mamicode.com
首页 >  
搜索关键字:auto_increment    ( 1277个结果
MySQL 主键外键
笛卡儿积 多表查询 ,多个表变成一个表 完整性约束条件primary key 标识该属性为该表的主键,可以唯一的标识对应的元组foreign key 标识该属性为该表的外键,是与之联系的某表的主键not null 标识该属性不能为空unique 标识该属性的值是唯一的auto_increment 标 ...
分类:数据库   时间:2018-05-08 22:30:50    阅读次数:298
Mysql-数据的完整性约束
一 、介绍 二 、not null与default 三 、unique 四 、primary key 五 、auto_increment 六 、foreign key 一 、介绍 约束条件与数据类型的宽度一样,都是可选参数 作用:用于保证数据的完整性和一致性主要分为: PRIMARY KEY (PK ...
分类:数据库   时间:2018-05-08 21:04:23    阅读次数:173
mysql - 表
约束: auto_increment 自增长 not null 不能为空 default 'x' 默认值 unique 唯一约束 charset 指定字符集 primary key 主键(具有唯一性,不能为空) 外键 用来表示两个表之间的关联关系(关联太多,影响性能) 查看表: 查看所有的表:sho ...
分类:数据库   时间:2018-05-08 12:13:23    阅读次数:170
数据库---表---多表查询
多表查询 多表连接查询 复合条件连接查询 子查询 一、准备表 #建表 create table department( id int, name varchar(20) ); create table employee( id int primary key auto_increment, name ...
分类:数据库   时间:2018-05-07 22:49:48    阅读次数:162
sql
"Effective MySQL之SQL语句最优化" DBA5分钟速成( --测试表 CREATE TABLE IF NOT EXISTS inventory ( id int(11) UNSIGNED NOT NULL AUTO_INCREMENT, supp_id int(11) UNSIGNE... ...
分类:数据库   时间:2018-05-07 11:47:17    阅读次数:262
mysql -5练习
-- 创造产品类型表 CREATE TABLE product_type( protype_id INT PRIMARY KEY AUTO_INCREMENT, protype_name VARCHAR(15) ) SELECT * FROM product_type; INSERT product... ...
分类:数据库   时间:2018-05-06 16:20:41    阅读次数:153
命令更改表结构:添加、删除、修改字段、调整字段顺序
ALTER TABLE `user_movement_log` CHANGE `GatewayId` `GatewayId` int not null default 0 AFTER RegionID;//主键alter table tabelname add new_field_id int(5) unsigned default 0 not null auto_increment ,add p
分类:其他好文   时间:2018-05-04 16:58:39    阅读次数:229
EC建表
阅读列表: 一、 客户信息表 二、 客户流水表 三、 员工信息表 一、 客户信息表 -- 客户信息表 CREATE TABLE `g_ec_customer` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `crm_id` ...
分类:其他好文   时间:2018-05-04 15:23:17    阅读次数:200
mysql四-2:多表查询
一、准备表新建表mysql> create table department(    id int,    name varchar(20)     );mysql> create table employee(    id int primary key auto_increment, 
分类:数据库   时间:2018-05-02 21:08:23    阅读次数:229
mysql 常用的命令集合
1.创建表 CREATE TABLE `cardPcitrue`( `id` INT AUTO_INCREMENT NOT NULL PRIMARY KEY COMMENT'编号', `cId` INT NULL COMMENT'点卡编号', `path` VARCHAR(200) NULL COM ...
分类:数据库   时间:2018-04-28 16:52:14    阅读次数:181
1277条   上一页 1 ... 42 43 44 45 46 ... 128 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!