我想使用JOOMLA 2.5一次运行许多sql更新查询.在我的代码下面:
require_once '../includes/framework.PHP';
$query = "UPDATE #__mytable SET myfield='value' where id=1; UPDATE #__mytable SET
myfield='value' where id=2; UPDATE #__mytable SET myfield='value' where id=3;";
$db = JFactory::getDbo();
$db->setQuery($query);
$db->query();
最佳答案
原文链接:https://www.f2er.com/mysql/433101.html