mysql
iteye_2883
这个作者很懒,什么都没留下…
展开
-
MySQL的数据库的名字是否区分大小写
MySQL的数据库的名字是否区分大小写? 在Unix下面,是区分的在Windows下面,是不区分的所以为了兼容性,请使用你创建时的名字,建议全部小写好了。 ...原创 2011-07-27 20:25:24 · 479 阅读 · 0 评论 -
mysql的bit类型
from : http://edu.codepub.com/2010/0714/24229.phpmysql> CREATE TABLE test(id int,a bit(8));mysql> INSERT INTO test VALUES(1,b‘00111010′);mysql> INSERT INTO test VALUES(2,b‘00111000′)...原创 2011-03-22 18:29:58 · 478 阅读 · 0 评论