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.
我试图弄清楚如何做到这一点,但没有运气,所以我寻求帮助......
我有一个名为 products 的表,我需要在一个名为 refresh_time 的列中更新在另一个名为“ref”的列中喜欢“-295”的所有行
我试过了
UPDATE products SET refresh_time = "2014-10-26 08:33:29" WHERE products.ref LIKE "295-"
没运气..
任何帮助都非常感谢..在此先感谢。
您需要在 LIKE 模式中使用通配符。并使用单引号。
LIKE '295-%'
http://www.w3schools.com/sql/sql_like.asp