mysql中插入的数据加引号问题
INSERT tdb_goods(goods_name,cate_id,brand_id,goods_price) VALUES(' LaserJet Pro P1606dn 黑白激光打印机','12','4','1849');
这条语句中cate_id,brand_id的类型为smallint,插入的数值加了引号,可以插入,不加引号也可以,为什么?
INSERT tdb_goods(goods_name,cate_id,brand_id,goods_price) VALUES(' LaserJet Pro P1606dn 黑白激光打印机','12','4','1849');
这条语句中cate_id,brand_id的类型为smallint,插入的数值加了引号,可以插入,不加引号也可以,为什么?
2017-05-20
举报