Questions tagged «mysql»

4
使用JDatabase创建子查询的方法
在http://docs.joomla.org/Selecting_data_using_JDatabase上,没有使用JDatabase编写子查询的书面方法。 https://gist.github.com/gunjanpatel/8663333举例说明了一种实现此目的的方式(省略了一些位): $subQuery = $db->getQuery(true); $query = $db->getQuery(true); // Create the base subQuery select statement. $subQuery->select('*') ->from($db->quoteName('#__sub_table')) ->where($db->quoteName('subTest') . ' = ' . $db->quote('1')); // Create the base select statement. $query->select('*') ->from($db->quoteName('#__table')) ->where($db->quoteName('state') . ' = ' . $db->quote('1')) ->where($db->quoteName('subCheckIn') . ' IN (' . $subQuery->__toString() . ')') ->order($db->quoteName('ordering') . …

2
我怎么知道资产表的完整性是否良好?
1)我已经将许多文章从Joomla 1.5迁移到了joomla3。迁移进行得很顺利。但是,当我在文章编辑器中按“保存”按钮时,有几篇文章无法保存。保存文章时确实会说错误,但没有提及什么错误。 2)在有人提到我的资产表的完整性可能不正确之后,我查看了资产表。当我看到不同的列时,我感到很困惑。因此,我的第二个问题是资产表中的嵌套集父级,嵌套集lft和嵌套集是什么。和正确需要具有独特的价值吗?
8 mysql 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.