I have a MySQL table that has a product_id field (large integer)
1102330008 1102330025 1102330070 1103010009 1103010010 1103020006 ...
I want to select rows with product_id = 110301**** . I tried using this query:
SELECT * FROM `product` WHERE (product_id/10000)=110301
but it does not return any values ββwith this message:
MySQL returned an empty result set (ie zero rows). ( Query took 0.0005 sec )
sql mysql select sqldatatypes
biji buji
source share