Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我遇到了以下 MySQL 查询:
update 'table' set itemId=:itemId, startDate=:startDate where id=:id
但是我无法弄清楚 =: 是什么意思。我认为 =: 之后的名称是一个变量,但是如何检查里面的内容或它是如何设置的?
这可能是引用绑定变量。执行 MySQL 语句的 PHP 或其他代码将引用替换为变量。