I came across the following MySQL query:
update 'table' set itemId=:itemId, startDate=:startDate where id=:id
However, I could not understand what the meaning of :: means. I think the name after =: is a variable, but then how to check what's inside or how is it set?
source
share