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.
我将如何</div>在 MySQL 中将结束标记大量插入到定义的字段名称中?
</div>
多谢了。
考虑使用 CONCAT 命令:
UPDATE jos_content SET fulltext = CONCAT( fulltext, '</div>' ) WHERE id = 7;
如果您想在单个查询中更新所有记录,只需删除上面的 WHERE 子句。
请注意,根据您使用的服务器端语言,您需要为此设置参数化查询,以防止 SQL 注入或其他黑客攻击。