find by column name cakePHP

smokingyade

New Member
Hello I have been trying to understand how to get data from model by the name of field. I am using cakePHP, and I need to retreive a column's data from a table. The syntax is\[code\]> "select name from permissions"\[/code\]So I tried to find out on book.cakephp.org, so I got the field function, but that only gives me the first value, while I have more than one values for this.I tried do a \[code\]$this->Model->find(array('fields'=>'Model.fieldName'));\[/code\]but I understood that the syntax itself is flawed.Can somebody let me know what is the method to query based on column name.
 
Back
Top