From: Peter Brawley Date: November 28 2005 7:36pm Subject: Re: How to use Logic in View Statment? List-Archive: http://lists.mysql.com/mysql/192275 Message-Id: <438B5C28.9080102@earthlink.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Scott >select >fieldOne, >fieldTwo, >if(fieldThree.length>0) then fieldThree as Company >else fieldFour as Company >from table; SELECT fieldOne, fieldTwo, IF( LENGTH( fieldthree ) > 0, fieldthree, fieldFour ) AS Company FROM table; PB ----- Scott Klarenbach wrote: >I'd like to do the following in my view > >select > fieldOne, > fieldTwo, > if(fieldThree.length>0) then fieldThree as Company > else fieldFour as Company > >from table; > >I realize this syntax isn't correct and length doesn't exists, but is >this possible? I've seen it done in SQLServer, but can't remember the >syntax. > > > -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.362 / Virus Database: 267.13.8/184 - Release Date: 11/27/2005