我很想做这样的查询:
$this->set('title', 'Lista de Posts');
$Posts = $this->Post->query("SELECT id,Titulo,Data,Hora,RIGHT(Conteudo,200) AS Conteudo,Usuario FROM posts;");
$this->set('posts', $Posts);
$this->layout = 'home';
但是在视图中我收到了这条消息:
注意(8):未定义索引:Post [APP/View/Posts/home.ctp, line 4]
但是使用 $Posts = $this->Post->find('all') 它可以工作。
请任何人都可以帮助我在蛋糕 php 中使用 RIGHT(Conteudo,200) 吗?
谢谢