摘要:
解决办法: 1、开放权限 使用命令:chmod -R 777 文件路径 2、关闭SELinux 使用命令:setenforce 0 阅读全文
摘要:
在php.ini 中没有找到"extension=php_gd2.dll"这行代码,这是因为CentOS一般没有预装GD库。 解决办法: 1、在线安装GD库 yum -y install php-gd 2、#重启apache,使其生效 service httpd restart 阅读全文
摘要:
语法:select * from 表名 where (字段名) in (select 字段名 from 表名 group by 字段名 having count(*) > 1); 如一下goods表: : 执行sql语句:select * from goods where inventory in 阅读全文
摘要:
语法:update 表名 set 字段名 = replace(字段名,'替换前内容','替换后的内容') where 条件。 如: 执行sql语句:update student set name = replace(name,'白','黑') where name like '%白%'; 阅读全文
摘要:
# 创建学生表 create table student(age int,name varchar(32))engine myisam charset utf8;insert into student values(18,'小白'); # 创建教师表,结构与学生表结构一模一样create table 阅读全文