我们使用Kickstarter进行了扩展。在DB上,我们有许多具有相同pid
元素的项目。我们希望在列表中显示仅基于pid
的第一项。例如:
PID 1
PID 2
PID 3
如何将列表中显示的项目限制为仅第一个元素:record1,record 14,record 21?
要选择我们使用pi_exec_query
功能。
答案 0 :(得分:0)
哇,真的老派,喜欢它;)
无论如何,您应该使用little bit younger API来查询表格:
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery(
'*',
'your_table',
"pid=$myPid ",
'',
'uid ASC',
'0,3'
)