ANY关键字:
假设any内部的查询语句返回的结果个数是三个,
那么,select ...from ... where a > any(...)
等同于:
select ...from ... where a > result1 or a > result2 or a > result3
ALL关键字:
ALL关键字与any关键字类似,只不过上面的or改成and。
SOME关键字:
some关键字和any关键字是一样的功能。
ANY关键字:
假设any内部的查询语句返回的结果个数是三个,
那么,select ...from ... where a > any(...)
等同于:
select ...from ... where a > result1 or a > result2 or a > result3
ALL关键字:
ALL关键字与any关键字类似,只不过上面的or改成and。
SOME关键字:
some关键字和any关键字是一样的功能。
对于32位系统,安装Wampserver 后启动的时候提示系统错误:MSVCR110.dll丢失。
于是卸载原来的WAMPSERVER 。安装vcredist_x86.exe,重新安装WAMPSERVER 2之后,问题解决了。
对于64位系统,则需要下载wampserver 64位版,并且安装vcredist_x64.exe
64位下载地址:http://www.onlinedown.net/soft/118187.htm
vcredist_x64.exe 和vcredist_x86.exe下载地址:http://www.microsoft.com/zh-cn/download/details.aspx?id=30679
在CI框架中,当数据库出现错误的时候,在windows系统中会提示:
Error Number: 1146
Table ‘article.hd_article0’ doesn’t exist
SELECTtitle
,aid
FROM (hd_article0
) ORDER BYtime
desc LIMIT 10
Filename: E:\wamp\www\article\system\database\DB_driver.php
Line Number: 330
禁用a标签方法一
1 | $(document).ready(function () { |