• phpmyadmin查询替换

    新注册一个域名,作为独立cdn域名,用于企业网站,之前用的我的个人域名,现在打算全部替换掉, 前段时间注册一个了,现在看他不爽,越看越怪,于是又注册一个新的...赶在年底备了个案. 举例 举例更改wordpress数据 UPDATE wp_posts SET post_content =replace( post_content ,'img.blyoo.com','img1.blyoo.com')…

    学习 2019-01-31 3158

  • Mysql查找字段空、不为空的方法

    不为空 select * from table where id '' select * from table where id !='' 为空 select * from table where id='' select * from table where ISNULL(id)

    学习 2016-10-23 2737