摘要: 在php.ini 中没有找到"extension=php_gd2.dll"这行代码,这是因为CentOS一般没有预装GD库。 解决办法: 1、在线安装GD库 yum -y install php-gd 2、#重启apache,使其生效 service httpd restart 阅读全文
posted @ 2016-06-24 21:38 D蓝叶 阅读(676) 评论(1) 推荐(1) 编辑
摘要: 语法:select * from 表名 where (字段名) in (select 字段名 from 表名 group by 字段名 having count(*) > 1); 如一下goods表: : 执行sql语句:select * from goods where inventory in 阅读全文
posted @ 2016-06-24 20:37 D蓝叶 阅读(417) 评论(0) 推荐(0) 编辑
摘要: 语法:update 表名 set 字段名 = replace(字段名,'替换前内容','替换后的内容') where 条件。 如: 执行sql语句:update student set name = replace(name,'白','黑') where name like '%白%'; 阅读全文
posted @ 2016-06-24 19:07 D蓝叶 阅读(1871) 评论(0) 推荐(0) 编辑
摘要: # 创建学生表 create table student(age int,name varchar(32))engine myisam charset utf8;insert into student values(18,'小白'); # 创建教师表,结构与学生表结构一模一样create table 阅读全文
posted @ 2016-06-24 18:42 D蓝叶 阅读(883) 评论(0) 推荐(0) 编辑