ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[mysql基础及优化](https://www.kancloud.cn/book/a173512/mysql/edit) 插入查询更新等操作条件是null时不能用=(=表示null字符串),需要用is null条件 ``` select id from `shop_goods` where `brand_id` is NULL; update `shop_goods` set `brand_id`='1' where `brand_id` is NULL; ``` mysql版本 ``` mysql --help | grep Distrib //或者 V必须大写 mysql -V ```