<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title><![CDATA[最族]]></title> 
<description><![CDATA[共筑梦想，拥抱未来！
Build a dream, embrace the future!]]></description>
<link>http://www.mostclan.com/</link>
<language>zh-cn</language>
<generator>www.emlog.net</generator>
<item>
	<title>Mysql 中 MyISAM 和 InnoDB 的区别</title>
	<link>http://www.mostclan.com/post-331.html</link>
	<description><![CDATA[作者：oscarwin 链接：https://www.zhihu.com/question/20596402/answer/211492971 来源：知乎 著作权归作者所有。商业转载请联系作者获得授权，非商业转载请注明出处。 区别： 1. InnoDB 支持事务，MyISAM 不支持事务。这是 MySQL 将默认存储引擎从 MyISAM 变成 InnoDB 的重要原因之一； 2. InnoDB 支持外键，而 MyISAM 不支持。对一个包含外键的 InnoDB 表转为 MYISAM 会失败； <a href="http://www.mostclan.com/post-331.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p><p><a href="http://www.mostclan.com/post-57.html">MySQL数据库基础回顾</a></p></div>]]></description>
	<pubDate>Sat, 29 Feb 2020 07:00:20 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-331.html</guid>

</item>
<item>
	<title>mysql的binlog日志限制大小和期限设置</title>
	<link>http://www.mostclan.com/post-253.html</link>
	<description><![CDATA[查看当前日志保存天数： show variables like '%expire_logs_days%';  这个默认是0，也就是logs不过期，可通过设置全局的参数，使他临时生效： set global expire_logs_days=7;  设置了只保留7天BINLOG, 下次重启mysql这个参数默认会失败，所以需在my.cnf中设置 expire_logs_days = 7 max_binlog_size = 100M 如果二进制日志写入的内容超... <a href="http://www.mostclan.com/post-253.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p></div>]]></description>
	<pubDate>Sat, 09 Dec 2017 12:27:11 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-253.html</guid>

</item>
<item>
	<title>MySQL修改root密码的4种方法</title>
	<link>http://www.mostclan.com/post-227.html</link>
	<description><![CDATA[方法1： 用SET PASSWORD命令 首先登录MySQL。 格式：mysql  set password for 用户名@localhost = password('新密码'); 例子：mysql  set password for root@localhost = password('123'); 方法2：用mysqladmin 格式：mysqladmin -u用户名 -p旧密码 password 新密码 例子：mysqladmin -uroot -p123... <a href="http://www.mostclan.com/post-227.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p><p><a href="http://www.mostclan.com/post-57.html">MySQL数据库基础回顾</a></p></div>]]></description>
	<pubDate>Sat, 17 Jun 2017 08:41:06 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-227.html</guid>

</item>
<item>
	<title>【原创】记update批量更新及默认值问题</title>
	<link>http://www.mostclan.com/post-211.html</link>
	<description><![CDATA[在常规的业务开发过程中，经常有更新数据的情况，而碰到多条数据更新必定会带来多次数据库改写操作，为了增加执行效率和数据完整、一致性，推荐采用多合一的批量更新方法。  首先看一下sql批量更新的语法： UPDATE categories  SET display_order = CASE id  WHEN 1 THEN 3  WHEN 2 THEN 4  WHEN 3 THEN 5  END
WHERE id IN (1,2,3) 如果要对多个字段进行更新则可写如下语法：... <a href="http://www.mostclan.com/post-211.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p></div>]]></description>
	<pubDate>Tue, 16 May 2017 11:37:00 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-211.html</guid>

</item>
<item>
	<title>MySQL中varchar的字符存储长度</title>
	<link>http://www.mostclan.com/post-201.html</link>
	<description><![CDATA[varchar（M）其中的M代表的是字符数 而不是字节数 和编码类型无关 无论是哪一种编码都只能存M个字符 比如：M=6 那么它能存6个汉字或者存6个英文字母。 4.0版本以下，varchar(20)，指的是20字节，如果存放UTF8汉字时，只能存6个（每个汉字3字节） ；5.0版本以上，varchar(20)，指的是20字符，无论存放的是数字、字母还是UTF8汉字（每个汉字3字节），都可以存放20个，最大大小是65532字节 ；varchar(20)在Mysql4中最大也不过是20个字节,但是Mysql5根据编码不同,存储大小也不同，具体有以下规则： a) 存储限制 varchar 字段是将实际内容单独存储在聚簇索引之外，内容开头用1到2个字节表示实... <a href="http://www.mostclan.com/post-201.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p><p><a href="http://www.mostclan.com/post-57.html">MySQL数据库基础回顾</a></p></div>]]></description>
	<pubDate>Tue, 18 Apr 2017 01:11:45 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-201.html</guid>

</item>
<item>
	<title>MySQL使用source命令乱码问题解决方法</title>
	<link>http://www.mostclan.com/post-174.html</link>
	<description><![CDATA[解决方式 在导出mysql sql执行文件的时候，指定一下编码格式： mysqldump -uroot -p --default-character-set=utf8 mo（dbname）   E://xxxx.sql 导入的时候OK了 执行如下 mysql -u root -p --default-character-set=utf8 use dbname source /root/newsdata.sql <a href="http://www.mostclan.com/post-174.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p></div>]]></description>
	<pubDate>Sun, 18 Dec 2016 12:46:50 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-174.html</guid>

</item>
<item>
	<title>InnoDB还是MyISAM再谈MySQL存储引擎的选择</title>
	<link>http://www.mostclan.com/post-142.html</link>
	<description><![CDATA[两种类型最主要的差别就是Innodb 支持事务处理与外键和行级锁.而MyISAM不支持.所以MyISAM往往就容易被人认为只适合在小项目中使用。 我作为使用MySQL的用户角度出发，Innodb和MyISAM都是比较喜欢的，但是从我目前运维的数据库平台要达到需求：99.9%的稳定性，方便的扩展性和高可用性来说的话，MyISAM绝对是我的首选。 原因如下： 1、首先我目前平台上承载的大部分项目是读多写少的项目，而MyISAM的读性能是比Innodb强不少的。 2、MyISAM的索引和数据是分开的，并且索引是有压缩的，内存使用率就对应提高了不少。能加载更多索引，而Innodb是索引和数据是紧密捆绑的，没有使用压缩从而会造成Innodb比MyISAM体积庞大... <a href="http://www.mostclan.com/post-142.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p></div>]]></description>
	<pubDate>Mon, 20 Jun 2016 16:38:35 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-142.html</guid>

</item>
<item>
	<title>MySQL5日期类型DATETIME和TIMESTAMP相关问题详解</title>
	<link>http://www.mostclan.com/post-141.html</link>
	<description><![CDATA[MySQL5日期类型DATETIME和TIMESTAMP相关问题详解  MySQL5的日期类型有三种：DATETIME、DATE和TIMESTAMP，除了DATE用来表示一个不带时分秒的是日期，另外两个都带时分秒。TIMESTAMP还可以精确到毫秒。  其次还有个共性，就是他们的格式“不严格”，很自由，一般你认为对的格式都可以正确插入到数据库中。  这里主要解决带时分秒日期的一些常见问题。  一、IMESTAMP  1、TIMESTAMP列必须有默认值，默认值可以为“0000-00-00 00:00:00”，但不能... <a href="http://www.mostclan.com/post-141.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p></div>]]></description>
	<pubDate>Mon, 20 Jun 2016 16:32:22 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-141.html</guid>

</item>
<item>
	<title>各种MySQL表存储引擎介绍</title>
	<link>http://www.mostclan.com/post-138.html</link>
	<description><![CDATA[MySQL的强大之处在于它的插件式存储引擎，我们可以基于表的特点使用不同的存储引擎，从而达到最好的性能。 下面我们来认识一下MySQL各表存储引擎的特点： InnoDB存储引擎 特点： 1，支持事务，主要面向在线事务处理(OLTP)方面的应用。 2，行锁设计，支持外键，并支持orcle的非锁定读，即默认情况下读取操作不加锁。 3，第三方存储引擎，被orcle收购。 4，windows版本默认存储引擎，其他系统mysql默认存储引擎为MyISAM。 <a href="http://www.mostclan.com/post-138.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p></div>]]></description>
	<pubDate>Mon, 20 Jun 2016 11:14:28 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-138.html</guid>

</item>
<item>
	<title>大SQL文件导入数据库的方法</title>
	<link>http://www.mostclan.com/post-135.html</link>
	<description><![CDATA[1、点击开始-运行，输入cmd，然后回车进入到DOS界面。 2、进入MYSQL安装目录。 3、假如MYSQL安装在D盘，SQL文件也在D盘，加入命名为demo.sql，操作的方法是： 输入D:，回车即进入到D盘了，然后输入cd mysql/bin并回车 4、再输入mysql -u root -p database d:/demo.sql，回车显示要输入密码 5、如果MYSQL数据库的密码为空则不输入任何东西回车，没有出现错误说明导入成功。 注意：上面的database是要导入的数据库名。 <a href="http://www.mostclan.com/post-135.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p></div>]]></description>
	<pubDate>Sun, 19 Jun 2016 12:39:32 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-135.html</guid>

</item>
<item>
	<title>临时表、内存表和视图</title>
	<link>http://www.mostclan.com/post-130.html</link>
	<description><![CDATA[虚拟表，顾名思义，就是实际上并不存在（物理上不存在），但是逻辑上存在的表。这样说很抽象，还是看一些实际的例子吧。 在mysql中，存在三种虚拟表：临时表、内存表和视图。 一、mysql临时表 1、什么是临时表 临时表是建立在系统临时文件夹中的表，如果使用得当，完全可以像普通表一样进行各种操作。 临时表的数据和表结构都储存在内存之中，退出时，其所占的空间会自动被释放。 2、创建临时表 (1)定义字段 CREATE TEMPORARY TABLE tmp_table (     name VARCHAR(10) NOT NULL, &nbsp... <a href="http://www.mostclan.com/post-130.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p></div>]]></description>
	<pubDate>Fri, 17 Jun 2016 03:28:42 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-130.html</guid>

</item>
<item>
	<title>union、union all、Intersect、Minus的使用</title>
	<link>http://www.mostclan.com/post-129.html</link>
	<description><![CDATA[Union因为要进行重复值扫描，所以效率低。如果合并没有刻意要删除重复行，那么就使用Union All 两个要联合的SQL语句 字段个数必须一样，而且字段类型要“相容”（一致）； 如果我们需要将两个select语句的结果作为一个整体显示出来，我们就需要用到union或者union all关键字。union(或称为联合)的作用是将多个结果合并在一起显示出来。 union和union all的区别是,union会自动压缩多个结果集合中的重复结果，而union all则将所有的结果全部显示出来，不管是不是重复。 Union：对... <a href="http://www.mostclan.com/post-129.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-57.html">MySQL数据库基础回顾</a></p></div>]]></description>
	<pubDate>Fri, 17 Jun 2016 02:06:56 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-129.html</guid>

</item>
<item>
	<title>MySQL的Date,DateTime,TimeStamp和Time数据类型</title>
	<link>http://www.mostclan.com/post-126.html</link>
	<description><![CDATA[DATETIME类型用在你需要同时包含日期和时间信息的值时。MySQL检索并且以'YYYY-MM-DD HH:MM:SS'格式显示DATETIME值，支持的范围是'1000-01-01 00:00:00'到'9999-12-31 23:59:59'。（“支... <a href="http://www.mostclan.com/post-126.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p><p><a href="http://www.mostclan.com/post-57.html">MySQL数据库基础回顾</a></p></div>]]></description>
	<pubDate>Wed, 15 Jun 2016 06:59:26 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-126.html</guid>

</item>
<item>
	<title>MySQL常用函数</title>
	<link>http://www.mostclan.com/post-125.html</link>
	<description><![CDATA[一、数学函数 ABS(x)  返回x的绝对值 BIN(x)  返回x的二进制（OCT返回八进制，HEX返回十六进制） CEILING(x)  返回大于x的最小整数值 EXP(x)  返回值e（自然对数的底）的x次方 FLOOR(x)  返回小于x的最大整数值 GREATEST(x1,x2,...,xn)返回集合中最大的值 LEAST(x1,x2,...,xn)   返回集合中最小的值 LN(x)      &nbs... <a href="http://www.mostclan.com/post-125.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p></div>]]></description>
	<pubDate>Wed, 15 Jun 2016 06:33:20 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-125.html</guid>

</item>
<item>
	<title>linux关闭mysql strict mode的方法介绍</title>
	<link>http://www.mostclan.com/post-121.html</link>
	<description><![CDATA[I. Strict Mode阐述
根据 mysql5.0以上版本 strict mode (STRICT_TRANS_TABLES) 的限制： 1).不支持对not null字段插入null值
2).不支持对自增长字段插入''值，可插入null值
3).不支持 text 字段有默认值 linux关闭mysql strict mode的方法非常简单，下面我来给大家总结了些常用的关闭mysql strict mode模式的例子，希望文章对各位同学会带来帮助。 首先用putty连接linux终端
vi /etc/my.conf 在编辑模式下，在里面加入一行代码：
... <a href="http://www.mostclan.com/post-121.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p></div>]]></description>
	<pubDate>Mon, 30 May 2016 07:09:41 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-121.html</guid>

</item>
<item>
	<title>SQL语言的分类</title>
	<link>http://www.mostclan.com/post-112.html</link>
	<description><![CDATA[SQL语言共分为四大类：数据查询语言DQL，数据操纵语言DML，数据定义语言DDL，数据控制语言DCL。 1. 数据查询语言DQL 数据查询语言DQL基本结构是由SELECT子句，FROM子句，WHERE 子句组成的查询块： SELECT  字段名表  FROM  表或视图名  WHERE  查询条件  2 .数据操纵语言DML 数据操纵语言DML主要有三种形式： 1) 插入：INSERT 2) 更新：UPDATE 3) 删除... <a href="http://www.mostclan.com/post-112.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p></div>]]></description>
	<pubDate>Mon, 29 Feb 2016 10:14:40 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-112.html</guid>

</item>
<item>
	<title>mysql的数据类型int、bigint、smallint 和 tinyint取值范围</title>
	<link>http://www.mostclan.com/post-90.html</link>
	<description><![CDATA[使用整数数据的精确数字数据类型。 bigint  从 -2^63 (-9223372036854775808) 到 2^63-1 (9223372036854775807) 的整型数据（所有数字）。存储大小为 8 个字节。 int  从 -2^31 (-2,147,483,648) 到 2^31 - 1 (2,147,483,647) 的整型数据（所有数字）。存储大小为 4 个字节。int 的 SQL-92 同义字为 integer。 smallin... <a href="http://www.mostclan.com/post-90.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p></div>]]></description>
	<pubDate>Sun, 18 Oct 2015 07:10:03 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-90.html</guid>

</item>
<item>
	<title>MySQL Workbench中文路径保存问题</title>
	<link>http://www.mostclan.com/post-83.html</link>
	<description><![CDATA[小V今天在用MySQL Workbench保存EER模型时出现了未响应， 我重装了一遍，还是这样，顿时把我整傻了，最后经过我的测试发现，把文件保存在桌面却没出现问题，而保存在我的【工程】目录中就崩溃，以此推断应该是中文路径问题，于是我又测试了一下保存在英文目录下，果然是这样。 哎哎虽然Workbench没有出中文版的，但至少也得解决这个问题吧，还好我做的不多，不然崩溃就是我了。。 <a href="http://www.mostclan.com/post-83.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p></div>]]></description>
	<pubDate>Thu, 08 Oct 2015 12:40:52 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-83.html</guid>

</item>
<item>
	<title>MySQL的datetime设置当前时间为默认值</title>
	<link>http://www.mostclan.com/post-73.html</link>
	<description><![CDATA[由于MySQL目前字段的默认值不支持函数，所以 create_time datetime default now() 的形式设置默认值是不可能的。 代替的方案是使用TIMESTAMP类型代替DATETIME类型。 CURRENT_TIMESTAMP ：当我更新这条记录的时候，这条记录的这个字段不会改变。 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ：当我更新这条记录的时候，这条记录的这个字段将会改变。即时间变为了更新时候的时间。（注意一个UPDATE设置一个列为它已经有的值，这将不引起TIMESTAMP列被更新，因为如果你设置一个列为它当前的值，MySQL为了效率而忽略更改。）如... <a href="http://www.mostclan.com/post-73.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p></div>]]></description>
	<pubDate>Wed, 12 Aug 2015 15:40:12 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-73.html</guid>

</item>
<item>
	<title>MySQL数据库基础回顾2</title>
	<link>http://www.mostclan.com/post-58.html</link>
	<description><![CDATA[一、数据表 为了确保数据的完整性和一致性，在创建表时指定字段名称，字段类型和字段属性外，还需要使用约束（constraint),索引（index），主键（primary key）和外键（foregin key）等。 <a href="http://www.mostclan.com/post-58.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p></div>]]></description>
	<pubDate>Wed, 20 May 2015 02:03:22 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-58.html</guid>

</item>
<item>
	<title>MySQL数据库基础回顾</title>
	<link>http://www.mostclan.com/post-57.html</link>
	<description><![CDATA[一、数据类型 1、整型 ... <a href="http://www.mostclan.com/post-57.html">阅读全文&gt;&gt;</a><div id="related_log" style="font-size:12px"><p><b>相关日志：</b></p><p><a href="http://www.mostclan.com/post-331.html">Mysql 中 MyISAM 和 InnoDB 的区别</a></p><p><a href="http://www.mostclan.com/post-227.html">MySQL修改root密码的4种方法</a></p><p><a href="http://www.mostclan.com/post-201.html">MySQL中varchar的字符存储长度</a></p><p><a href="http://www.mostclan.com/post-126.html">MySQL的Date,DateTime,TimeStamp和Time数据类型</a></p><p><a href="http://www.mostclan.com/post-129.html">union、union all、Intersect、Minus的使用</a></p></div>]]></description>
	<pubDate>Wed, 20 May 2015 02:01:26 +0000</pubDate>
	<author>Veris</author>
	<guid>http://www.mostclan.com/post-57.html</guid>

</item></channel>
</rss>