摘要:
1:如果数据库表字段的字符编码是latin1_swedish_ci select * from tablename order by birary(name) asc ;tablename:数据库表名 name:排序字段名 birary不是函数,是类型转换运算符,它用来强制它后面的字符串为一个二进制 阅读全文
摘要:
1、应尽量避免在 where 子句中使用!=或<>操作符,否则将引擎放弃使用索引而进行全表扫描。 2、对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引。 3、应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引 阅读全文
摘要:
update table set column= case id when 1 then value1 when 2 then value2 end where id in(1,2) 阅读全文
摘要:
虚拟机网络不通 执行 sudo dhclient 阅读全文
摘要:
CentOS7中执行service iptables start/stop会报错Failed to start iptables.service: Unit iptables.service failed to load: No such file or directory. 在CentOS 7或R 阅读全文
摘要:
先开放3306端口#开放3306 firewall-cmd --permanent --add-port=3306/tcp systemctl restart firewalld.service #查看端口是否开放 firewall-cmd --query-port=3306/tcp 查看所有开放端 阅读全文
摘要:
安装前需修改php.ini配置文件; 找到disable_functions= 删除其中的proc_get_status和proc_open; 新建项目文件夹; composer create-project --prefer-dist laravel/laravel 文件夹名; 如报错:The f 阅读全文
摘要:
public function store(Request $request){ $this->validate($request,[ 'create_name' => 'required|max:50|min:6', 'name' => 'required|max:50|min:6', 'pic_ 阅读全文