Assume there is a table called users, and it has id,name,email fileds . this code: $info = Users::find(array( "name = 'vandad' ") ); I am not sure about above code what the exact form of SQL command is. I just want to SELECT email field but it seems the above code SELECT all fields firstly.
How can I SELECT specific a field through ORM architecture?
Thanks.