下面员工3的薪水大于其主管的薪水,一条SQL找到薪水比下属低的主管 id username salary pid 1 a 3000 null 2 b 8000 null 3 c 5000 1 4 d 6000 3 SELECT a.*, b.* FROM `user` as a LEFT JOIN `user` as b ON a.pid = b.id AND a.salary > b.salary WHERE b.id > 0; 事务有几种隔离级别?事务的隔离级别是怎么实现的? 读未提交(r…
什么是SQL注入? 就是通过把SQL命令插入到Web表单递交或输入域名或页面请求的查询字符串,最终达到欺骗服务器执行恶意的SQL命令. 例如一个简单的登录表单(这里把密码写成明文方便说明): 当在表单中填写这样的语句进行提交登录时会出现这样的SQL语句 select * from t_admin where admin_name='xxx' and admin_pwd='xxx'' or '1' 这样会查询出所有的用户信息,所有存在不安全隐患 常用的SQL注入方式 下面看看一些常用例测试的SQ…
使用: $createtime=date("Y/m/d H:i:s", time()+16*60*60); $createtime=date("Y-m-d H:i:s");//时间..H表示24小时制 提交表单后出现如下错误提示: Strict Standards: date() [function.date]: It is not safe to rely on the system's timezone settings. Please use the date…