摘要:
X-UA-Compatible是自从IE8新加的一个设置,对于IE8以下的浏览器是不识别的。 通过在meta中设置X-UA-Compatible的值,可以指定网页的兼容性模式设置。 在网页中指定的模式优先权高于服务器中(通过HTTP Header)所指定的模式。 兼容性模式设置优先级: meta t 阅读全文
摘要:
1. MYSQL源码安装后,使用自定义账户,并进行授权 use mysql delete from user where host = 'root' GRANT ALL PRIVILEGES ON *.* TO 'system'@'%' IDENTIFIED BY 'youpassword' WIT 阅读全文
摘要:
假设某个表有一个联合索引(c1,c2,c3,c4)一下——只能使用该联合索引的c1,c2,c3部分 A where c1=x and c2=x and c4>x and c3=x B where c1=x and c2=x and c4=x order by c3 C where c1=x and 阅读全文