MySQL basics】的更多相关文章

@1: MySQL有三大类数据类型, 分别为数字.日期\时间.字符串, 这三大类中又更细致的划分了许多子类型: 数字类型 整数: tinyint.smallint.mediumint.int.bigint 浮点数: float.double.real.decimal 日期和时间 date.time.datetime.timestamp.year 字符串类型 字符串: char.varchar 文本: tinytext.text.mediumtext.longtext 二进制(可用来存储图片.音乐…
学习资源: 0.学习教程 :MySQL 教程(runoob.com)   (MySQL Tutorial)turtorialPoint 1.学习帮助手册与平台: MySQL学习平台   英文手册chm下载     MySQL官网   MySQL官方论坛 3.数据库博客: Percona Database performance Blog   planet MySQL (blogs, news and opinions)     实用资源: 2.MySQL 基础:MySQL Basics -- A…
https://www.tutorialspoint.com/python/python_database_access.htm if you need to access an Oracle database as well as a MySQL database, you must download both the Oracle and the MySQL database modules. The DB API provides a minimal standard for workin…
目录 使用笔记 问题解决 资源链接 1.使用笔记 1.命令行客户端显示无法调整表格显示宽度,可以考虑在查询语句尾后添加 \G; 2.插入语句字符串转时间:link 2.问题解决 1.不能显示插入中文字符 博文 摘要:在配置文件中[mysqld]中添加 character-set-server=utf8 collation-server=utf8_general_ci 注意:建立的数据库需要删除重建 2. 3.学习资源 0.学习教程 :MySQL 教程(runoob.com)   (MySQL T…
目的:解决mysql空间越来越大,mysql性能出现瓶颈,zabbix会无端出现大量agent超时报警 中间遇到一个mysql问题:5.1版本的mysql不支持分表(其实是支持的,需要重新编译mysql,加上参数--with-plugins=partition(支持分表功能)),最后升级mysql到5.6版本解决   1.修改两张表的结构: use zabbix Alter table history_text drop primary key, add index (id), drop ind…
JDBC连接MySQL 方法 实例及资料收集 准备工作 首先,安装MySQL,配置用户名和密码,创建数据库. 可参见之前的文章: http://www.cnblogs.com/mengdd/p/3154638.html http://www.cnblogs.com/mengdd/p/3154922.html 准备驱动包 要用JDBC连接MySQL,需要一个驱动包: 可以去这里下载(其实完整安装MySQL后可以在安装路径中找到这个包): http://www.mysql.com/products/…
本文由 Ceph 中国社区 -QiYu 翻译 英文出处:Using Ceph with MySQL 欢迎加入CCTG Over the last year, the Ceph world drew me in. Partly because of my taste for distributed systems, but also because I think Ceph represents a great opportunity for MySQL specifically and data…
用zabbix的同学都知道,一台服务器监视几百几千台服务器,一个服务器几十个item,长年下来数据量是很惊人的. 而zabbix自带的housekeeping功能,默认状态下的删除速度完全跟不上数据增长的速度. 而一旦把删除量加大,CPU磁盘又开始报警了,严重的情况下,监视都会中断. 为了防止这种问题,我们采用了mariaDB(mysql)的partitioning功能. partitioning功能的开启最好是在服务器搭建的初期就设计并配置好. 一旦服务器运行了一段时间,partitionin…
原文地址:http://www.javacodegeeks.com/2015/07/mysql-vs-mongodb.html 1. Introduction It would be fair to say that as IT professionals we are living in the golden age of data management era. As our software systems become more complex and more distributed,…
Posted on 19/09/2014 by Stewart Smith So, I’ve been looking around for a while (and a few times now) for any good resources that cover a bunch of MySQL architecture and technical details aimed towards the technically proficient but not MySQL literate…