求MYSQL好书籍~ - 其他数据库开发 / MySQL/Postgresql
一直专著于PHP的开发,一直都没对MYSQL深入了解..最近时间比较多了,想深入一下MYSQL内在的东西.
有没有什么好书,各位大大介绍一下..
入门级到深入的都行.
但不要太浅的..
先读三遍《数据库系统概论(第四版)》 王珊 萨师煊 高等教育出版社 (掌握基础知识和概念)
然后再粗略浏览一遍MYSQL的官方手册。(方便以后查找,避免类似于考试的时候,给你本政治书也不知道答案在第几章,第几页)MySQL官方文档 http://dev.mysql.com/doc/refman/5.1/zh/index.html
Apress.The.Definitive.Guide.to.MySQL.5.3rd.Edition.Sep.2005.pdf
MySQL Language Reference(2004).pdf
MySQL.Press.MySQL.Database.Design.and.Tuning.Jun.2005.eBook-DDU.chm
oreilly.high.performance.mysql.chm
Sams - MYSQL 5 Certification Study Guide(2005).chm
高性能mysql中文版第2版.pdf
MySQL权威指南(第3版)
MySQL性能调优与架构设计
相关问答:
刚刚接触MySQL,不知道该如何去查看数据,插入数据,创建数据库、表,用哪为前辈能指教一二?
MySQL 5.1参考手册
引用
兄弟你会结贴吗?
mysql 参考手册
baidu
MySQL官方文档 http://dev.mysql.com/doc ......
SQL code:
create procedure proc_batchUpdate(in categoryId integer , in artIds varchar(50))
begin
set @dsql = count('update article set type=' , categoryId , ' where id in (' , artIds , ' ......
SELECT * from alarms where id in (select resource_id from res_products where product=22)
这个语句在mysql中为什么不能执行?我的mysql数据库是5.0.27版本的!
如果实在不行那么该用个什么语句代替效率更高呢 ......
sp 程序
delimiter //
create procedure ma()
begin
declare i int default 0;
while i<11 do
set i=i+1;
select i;
end while;
end //
delimiter ;
1+2+...+9+10
为什么这个程序无法实现累加效果
/ ......