我有一个 MySQL 表,它有一个product_id
字段(大整数)
1102330008
1102330025
1102330070
1103010009
1103010010
1103020006
...
我想选择具有product_id = 110301****
. 我尝试使用此查询:
SELECT * FROM `product` WHERE (product_id/10000)=110301
但它不会通过此消息返回任何值:
MySQL returned an empty result set (i.e. zero rows). ( Query took 0.0005 sec )