十一个高级MySql面试题


Posted in 面试题 onOctober 06, 2014
1. Explain MySQL architecture. – The front layer takes care of network connections and security authentications, the middle layer does the SQL query parsing, and then the query is handled off to the storage engine. A storage engine could be either a default one supplied with MySQL (MyISAM) or a commercial one supplied by a third-party vendor (ScaleDB, InnoDB, etc.)
2. Explain MySQL locks. – Table-level locks allow the user to lock the entire table, page-level locks allow locking of certain portions of the tables (those portions are referred to as tables), row-level locks are the most granular and allow locking of specific rows.

3. Explain multi-version concurrency control in MySQL. – Each row has two additional columns associated with it – creation time and deletion time, but instead of storing timestamps, MySQL stores version numbers.
4. What are MySQL transactions? – A set of instructions/queries that should be executed or rolled back as a single atomic unit.
5. What’s ACID? – Automicity – transactions are atomic and should be treated as one in case of rollback. Consistency – the database should be in consistent state between multiple states in transaction. Isolation – no other queries can access the data modified by a running transaction. Durability – system crashes should not lose the data.
6. Which storage engines support transactions in MySQL? – Berkeley DB and InnoDB.
7. How do you convert to a different table type? – ALTER TABLE customers TYPE = InnoDB
8. How do you index just the first four bytes of the column? – ALTER TABLE customers ADD INDEX (business_name(4))
9. What’s the difference between PRIMARY KEY and UNIQUE in MyISAM? – PRIMARY KEY cannot be null, so essentially PRIMARY KEY is equivalent to UNIQUE NOT NULL.
10. How do you prevent MySQL from caching a query? – SELECT SQL_NO_CACHE …
11. What’s the difference between query_cache_type 1 and 2? – The second one is on-demand and can be retrieved via SELECT SQL_CACHE … If you’re worried about the SQL portability to other servers, you can use SELECT /* SQL_CACHE */ id FROM … – MySQL will interpret the code inside comments, while other servers will ignore it.

Tags in this post...

面试题 相关文章推荐
C语言开发工程师测试题
Dec 20 面试题
用C语言实现文件读写操作
Oct 27 面试题
输入一行文字,找出其中大写字母、小写字母、空格、数字、及其他字符各有多少
Apr 15 面试题
计算 s=(x*y)1/2,用两个宏定义来实现
Aug 11 面试题
如何高效率的查找一个月以内的数据
Apr 15 面试题
C#软件工程师英语面试题
Jun 07 面试题
C#中类(class)与结构(struct)的异同
Nov 03 面试题
Linux不知道文件后缀名怎么判断文件类型
Aug 21 面试题
介绍一下MYSQL常用的优化技巧
Oct 25 面试题
日期和时间问题
Jan 04 面试题
请说出以下代码输出什么
Aug 30 面试题
信号量和自旋锁的区别?如何选择使用?
Sep 08 面试题
遇到的Mysql的面试题
Jun 29 #面试题
一些关于MySql加速和优化的面试题
Jan 30 #面试题
MYSQL支持事务吗
Aug 09 #面试题
MYSQL基础面试题
May 13 #面试题
mysql有关权限的表都有哪几个
Apr 22 #面试题
介绍一下mysql的日期和时间函数
Mar 28 #面试题
介绍一下MYSQL常用的优化技巧
Oct 25 #面试题
You might like
用PHP函数解决SQL injection
2006/12/09 PHP
在PHP上显示JFreechart画的统计图方法
2013/11/03 PHP
Yii2前后台分离及migrate使用(七)
2016/05/04 PHP
兼容FireFox 的 js 日历 支持时间的获取
2009/03/04 Javascript
jQuery live
2009/05/15 Javascript
javascript类继承机制的原理分析
2009/09/12 Javascript
jQuery之排序组件的深入解析
2013/06/19 Javascript
jQuery教程 $()包装函数来实现数组元素分页效果
2013/08/13 Javascript
JavaScript使用HTML5的window.postMessage实现跨域通信例子
2014/04/11 Javascript
利用javascript实现全部删或清空所选的操作
2014/05/27 Javascript
javascript 回调函数详解
2014/11/11 Javascript
Jquery简单实现GridView行高亮的方法
2015/06/15 Javascript
JQuery插件Marquee.js实现无缝滚动效果
2016/04/26 Javascript
vue图片加载与显示默认图片实例代码
2017/03/16 Javascript
Angular2安装angular-cli
2017/05/21 Javascript
薪资那么高的Web前端必看书单
2017/10/13 Javascript
JS与jQuery实现ListBox上移,下移,左移,右移操作功能示例
2018/05/31 jQuery
jQuery+ThinkPHP实现图片上传
2020/07/23 jQuery
[15:28]DOTA2 HEROS教学视频教你分分钟做大人-剧毒术士
2014/06/13 DOTA
python 装饰器功能以及函数参数使用介绍
2012/01/27 Python
在Python中操作字典之clear()方法的使用
2015/05/21 Python
实现python版本的按任意键继续/退出
2016/09/26 Python
Python抓取手机号归属地信息示例代码
2016/11/28 Python
聊聊Python中的pypy
2018/01/12 Python
python学习笔记--将python源文件打包成exe文件(pyinstaller)
2018/05/26 Python
Python类和对象的定义与实际应用案例分析
2018/12/27 Python
利用python求积分的实例
2019/07/03 Python
解决PyCharm IDE环境下,执行unittest不生成测试报告的问题
2020/09/03 Python
Django框架实现在线考试系统的示例代码
2020/11/30 Python
localStorage 设置过期时间的方法实现
2018/12/21 HTML / CSS
实例讲解HTML5的meta标签的一些应用
2015/12/08 HTML / CSS
男女时尚与复古风格在线购物:RoseGal(全球免费送货)
2017/07/19 全球购物
泰国演唱会订票网站:StubHub泰国
2018/02/26 全球购物
英国儿童设计师服装的领先零售商:Base
2019/03/17 全球购物
商场经理竞聘演讲稿
2014/01/01 职场文书
教师工作证明范本
2015/06/12 职场文书