Re: conditions on how a virtual field is constructed

2010-05-20 Thread calvin
In this case TRIM() is the best solution. But you can also use the
IF(condition, "true value", "false value") function, which acts like a
ternary operator.

On May 19, 7:42 am, fly2279  wrote:
> For anyone else looking for a solution to this, I used mysql's trim
> function to just trim away the trailing comma and space if there isn't
> a first name:
>
> 'last_first' => sprintf('TRIM(TRAILING \', \' FROM
> (CONCAT(%s.last_name, ", ", %s.first_name)))', $this->alias, $this-
>
> >alias)
>
> Check out the new CakePHP Questions sitehttp://cakeqs.organd help others with 
> their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups 
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com For more options, visit this group 
> athttp://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: conditions on how a virtual field is constructed

2010-05-19 Thread fly2279
For anyone else looking for a solution to this, I used mysql's trim
function to just trim away the trailing comma and space if there isn't
a first name:

'last_first' => sprintf('TRIM(TRAILING \', \' FROM
(CONCAT(%s.last_name, ", ", %s.first_name)))', $this->alias, $this-
>alias)

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


conditions on how a virtual field is constructed

2010-05-19 Thread fly2279
I'm using a first_name and last_name columns in a customers table with
cake 1.3. I have created a virtual field of last_first that concats
the last_name and first_name fields with a comma in between. Is there
a way to make the virtual field display just the last_name if the
first_name is NULL? Below is my current virtualFields variable.

function __construct($id = false, $table = null, $ds = null) {
parent::__construct($id, $table, $ds);
$this->virtualFields = array(
'last_first' => sprintf('CONCAT(%s.last_name, ", ", 
%s.first_name)',
$this->alias, $this->alias),
);
}

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en