mysql常用语句
数据库中属性 整理 选用utf8 -> utf_bin
----------------------------------------
插入
INSERT INTO news (news_title,news_contents,news_date) VALUES( '标题', '内容', 'now()');
删除
delete from news where id>1
更新
UPDATE phome_ecms_news SET pic3= REPLACE(pic3, '你好', '您好')
吧pic字段中的你好替换成您好
持续更新++