🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[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; ```