mysql
GP0071
不想写
展开
-
mysql--Linux下解决编码格式问题(5.5.*)
文章来源:http://www.ha97.com/5359.html最简单的完美修改方法,修改mysql的my.cnf文件中的字符集键值(注意配置的字段细节):1、在[client]字段里加入default-character-set=utf8,如下:[client]port = 3306socket = /var/lib/mysql/mysql.sockd转载 2013-12-16 10:45:49 · 1498 阅读 · 0 评论 -
mysql--mysql基本操作命令
日期格式化 用法: select DATE_FORMAT(runTime,'%Y-%c-%d') from hdfsPicLog t where path like '%liveEpg/3/%' and count 主键 修改为主键自增:alter table hdfsPicLog modify column hdfsId int unsigned not n原创 2013-11-01 10:32:23 · 1508 阅读 · 0 评论 -
SQL -- left join、right join、inner join的区别
left join(左联接) 返回包括左表中的所有记录和右表中联结字段相等的记录 right join(右联接) 返回包括右表中的所有记录和左表中联结字段相等的记录 inner join(等值连接) 只返回两个表中联结字段相等的行举例如下:表A记录如下: aID aNum 1 a20050111 2 a20050112 3 a20050113 4转载 2016-01-13 17:53:00 · 1080 阅读 · 0 评论 -
MYSQL -- 通过in查询怎样排序问题
转:http://jingyan.baidu.com/album/67662997325ccf54d51b84d5.html?picindex=4 第一种方式: SELECT* FROM tableName WHERE id IN(179906362505 , 63323849672846 , 1842319481513 , 11931471166161 , 926221118 , 12457转载 2015-10-14 10:13:12 · 805 阅读 · 0 评论 -
MYSQL -- case when用法
1。select name, case when birthday'1981' then 'old' when birthday>'1988' then 'yong' else 'ok' END YORN from lee; 2。select NAME, case name when 'sam' then转载 2015-10-08 21:46:06 · 1354 阅读 · 0 评论 -
MYSQL -- 查表字段描述SQL
查询表字段描述SQL:SELECT COLUMN_NAME,column_comment FROM INFORMATION_SCHEMA.Columns WHERE table_name='t_user'原创 2015-08-19 18:26:36 · 2754 阅读 · 0 评论 -
mysql--mysql中event用法详解
一、基本概念mysql5.1版本开始引进event概念。event既“时间触发器”,与triggers的事件触发不同,event类似与linux crontab计划任务,用于时间触发。通过单独或调用存储过程使用,在某一特定的时间点,触发相关的SQL语句或存储过程。二、适用范围对于每隔一段时间就有固定需求的操作,如创建表,删除数据等操作,可以使用event来处理。例如:使用eve转载 2015-01-21 12:23:38 · 1014 阅读 · 0 评论 -
mysql-定时调用存储过程
mysql定时调用存储过程,对表数据集表结构进行备份存储过程实例:CREATE PROCEDURE backUpSms()BEGIN DECLARE tname varchar(64); set @tname = CONCAT('sms_accpet',DATE_FORMAT(NOW(),'%Y%m')); set @rname = CONCAT('create table '原创 2014-12-24 11:15:44 · 1770 阅读 · 1 评论 -
java-proxool 的使用配置
1:要将 proxool-0.9.0RC3.jar 和 commons-logging.jar 放到 Tomcat / webapps / web项目 / lib 里<看到网路上很多人说,只用 将 proxool-0.9.0RC3.jar 拷贝到 项目的lib里,尝试了后,重启tomcat,提示信息要求将 commons-logging.jar 也拷入哦 >2:在 Tomca转载 2014-09-17 15:51:21 · 1884 阅读 · 0 评论 -
proxool--高并发异常:We are already in the process of making 11 connections and the number of simultaneous
异常:Caused by: java.sql.SQLException: We are already in the process of making 11 connections and the number of simultaneous builds has been throttled to 10解决方案:在proxool.xml中增加:20默认10原创 2015-01-12 12:05:56 · 14153 阅读 · 1 评论 -
有关日期查询的思考
我们在开发过程会经常遇到原创 2014-04-18 16:09:57 · 1251 阅读 · 0 评论 -
mysql -- 查询表所有字段的属性和注释
select * from INFORMATION_SCHEMA.Columns where table_name='表名'转载 2017-06-20 15:40:00 · 4363 阅读 · 1 评论