码迷,mamicode.com
首页 >  
搜索关键字:auto_increment    ( 1277个结果
MYSQL 比较集
1、什么是较对集合:字符集的字符比较规则(collation,collate),一个字符集有多个较对集合。 mysql> create table ss (id int primary key auto_increment, -> cc char(10)); insert into ss value ...
分类:数据库   时间:2017-12-18 19:08:51    阅读次数:185
MYSQL 事务
事务(Transaction):ts,一般是指要做的或所做的事情。 例如:转账问题。 mysql> create table ac (id int primary key auto_increment, -> ac_name char(10),ac_money int); Query OK, 0 r ...
分类:数据库   时间:2017-12-18 18:45:51    阅读次数:201
mysql的表连接( left | right )join
测试MYSQL表关于内外连接 表一:雇员表(雇员ID,雇员名称,雇员入职时间,薪水,部门号) create table empo( empoid int(6) not null primary key auto_increment, empname varchar(32) not null, emp ...
分类:数据库   时间:2017-12-18 12:09:13    阅读次数:225
数据类型
整形:int zerofill //用0填充,此时自动为该列的数值属性设置成无符号型 auto_increment //自动加1的列,每张表中只有一个并且需要设置成非空,主键或者外键 create table my_tb(id int auto_increment not null primary ...
分类:其他好文   时间:2017-12-12 22:01:27    阅读次数:182
MySQL存储引擎之Myisam和Innodb总结性梳理
Mysql有两种存储引擎:InnoDB与Myisam,下表是两种引擎的简单对比 SELECT UPDATE INSERT Delete 对于AUTO_INCREMENT类型的字段,InnoDB中必须包含只有该字段的索引,但 是在MyISAM表中,可以和其他字段一起建立联 合索引 更好和更快的auto ...
分类:数据库   时间:2017-12-03 11:35:28    阅读次数:246
用cmd添加表
use class1; create table user2( -> id int auto_increment primary key, -> name varchar(50) not null, -> password varchar(50) not null); describe user2; ...
分类:其他好文   时间:2017-11-30 13:33:58    阅读次数:132
Mysql中FIND_IN_SET()和IN区别简析
来源:http://www.jb51.net/article/125744.htm 测试SQL: CREATE TABLE `test` ( `id` int(8) NOT NULL auto_increment, `name` varchar(255) NOT NULL, `list` varch ...
分类:数据库   时间:2017-11-27 23:50:14    阅读次数:425
4、MySQL查询语句01
上一章内容介绍了关于MySQL数据类型组成及应用,本章将介绍MySQL中的一些查询语句一些常用的命令和使用实例一、相关命令语法格式1.1添加字段altertabletb_nameadd<字段名>列类型[notnull|null][primarykey][uniqe][auto_increment][defaultvalue] altertabletb_nameadd&l..
分类:数据库   时间:2017-11-15 23:44:48    阅读次数:308
MySQL中创建表指定存储引擎
create table test( id int(10) unsigned not null auto_increment, name varchar(10) character set utf8, age int(10),primary key(id)) engine=MyISAM create ...
分类:数据库   时间:2017-11-11 17:46:05    阅读次数:141
第十二节
创建表 create table student( `id` int not null primary key auto_increment, `name` char(32)); 插入数据insert into student(name) values ('pan');insert into stu ...
分类:其他好文   时间:2017-11-10 15:03:19    阅读次数:112
1277条   上一页 1 ... 50 51 52 53 54 ... 128 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!