码迷,mamicode.com
首页 >  
搜索关键字:auto_increment    ( 1277个结果
MySQL 中 key, primary key ,unique key,index的区别
一、key与primary key区别CREATE TABLE wh_logrecord (logrecord_id int(11) NOT NULL auto_increment,user_name varchar(100) default NULL,operation_time datetime...
分类:数据库   时间:2015-06-15 12:54:51    阅读次数:154
sql example 9 -- 子查询
sql example 9 – 子查询sql example 9 – 子查询数据库准备create table student (id int auto_increment primary key,name varchar(10));create table scores (id int auto_...
分类:数据库   时间:2015-06-14 21:12:27    阅读次数:163
ibatis主子表查询
1、sql主表CREATE TABLE `account_group` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) DEFAULT NULL COMMENT '公众号分组', `count` int(11) DEFAUL...
分类:其他好文   时间:2015-06-12 19:17:11    阅读次数:132
PHP 日历签到模块
Create TableCREATE TABLE `tb_signinfo` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '记录每条签到详情', `memberID` int(11) DEFAULT NULL COMMENT '.....
分类:Web程序   时间:2015-06-11 19:11:07    阅读次数:126
【mysql5.6】数据类型
一、数值类型int(5) 表示显示宽度为5,默认为显示宽度11.zerofill 属性:用0填充前面空位auto_increment 属性:只用于整数。一般从1开始,每行增加1.一个表最多只能有一个这样的列。对于要使用auto_increment的列应该定义为not null并定义为primary ...
分类:数据库   时间:2015-06-09 23:22:35    阅读次数:158
mysql命令行以及mysql workbence查询结果中文乱码的解决方法
最近正在学习mysql,安装环境是windows server 2003 32位操作系统+mysql 5.1.47同时也安装了mysql命令行以及mysql workbench这里是test数据库createtable fortest(empno int auto_increment,empname...
分类:数据库   时间:2015-06-01 18:27:29    阅读次数:181
TEST_INCREMENT
CREATE TABLE TEST_INCREMENT(—- UNSIGNED:将数字类型无符号化,扩大整形数值的范围ID BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT primary key,TEST_NAME...
分类:其他好文   时间:2015-05-29 13:35:37    阅读次数:108
mysql workbench建表时PK,NN,UQ,BIN,UN,ZF,AI的含义
PK: primary key (column is part of a pk) 主键 ?NN: not null (column is nullable) 非空 ?UQ: unique (column is part of a unique key) 唯一 ?AI: auto increment (the column is auto incremented when...
分类:数据库   时间:2015-05-27 12:35:35    阅读次数:186
diamond 安装
diamond 安装 1:创建diamond使用的表 ?CREATE TABLE `config_info` ( ?? `id` bigint(64) unsigned NOT NULL auto_increment, ?? `data_id` varchar(255) NOT NULL default ‘‘, ?? `group_id` varchar(128...
分类:其他好文   时间:2015-05-26 12:53:12    阅读次数:109
mybatis入门(四)
mybatis入门需求:根据id查询用户的信息mysql数据库:CREATE TABLE `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(32) NOT NULL COMMENT '用户名称', `birthday`...
分类:其他好文   时间:2015-05-25 14:15:15    阅读次数:243
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!