My home street address is
517 willow thicket ct
Now 517 is part of a text and so even though it is a number, it is treated as text. So a number can be a numeric or character depending on the context in which it is used.
If context is numeric 5 (or any number) you don't need single quotes, if context is character we have to put five in single quotes '5'.
In your example product_id is a character variable and so the context is character. Hope this help.