decimal(numeric ) 同义,用于精确存储数值 . decimal 数据类型最多可存储 38 个数字,所有数字都能够放到小数点的右边.decimal 数据类型存储了一个准确(精确)的数字表达法:不存储值的近似值. 定义 decimal 的列.变量和参数的两种特性如下: p 小数点左边和右边数字之和,不包括小数点.如 123.45,则 p=5,s=2.指定精度或对象能够控制的数字个数. s指定可放到小数点右边的小数位数或数字个数. p 和 s 必须遵守以下规则:0 <= s <= p
原文: http://stackoverflow.com/questions/3135804/types-in-mysql-bigint20-vs-int20-etcc http://dev.mysql.com/doc/refman/5.1/en/numeric-types.html Types in MySQL: BigInt(20) vs Int(20) etcc See http://dev.mysql.com/doc/refman/5.1/en/numeric-types.html IN
在用mysql客户端对数据库进行操作时,打开终端窗口,如果一段时间没有操作,再次操作时,常常会报如下错误: ERROR 2013 (HY000): Lost connection to MySQL server during query ERROR 2006 (HY000): MySQL server has gone away No connection. Trying to reconnect... 这个报错信息就意味着当前的连接已经断开,需要重新建立连接. 那么,连接的时长是如何确认的?
mysql中in和exists的区别 -- in写法select * from A where A.id in (select bid from B ) and A.name in (select bname from B ) ;-- exits写法select * from A where EXISTS (select 1 from B.bid = A.id ); 区别1 当B表的数据远大于A表的数据 exits的效率更高(B表大,用exits)当B表的数据远小于A表的数据 in的效