Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Empty() function in SQL Server??
Message
 
 
To
29/04/2013 16:35:29
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Environment versions
Visual FoxPro:
VFP 9 SP2
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01572208
Message ID:
01572215
Views:
65
You don't need LEN() function.
field = '' 
It will work in VFP as well with SET ANSI ON.

and no, LEN() function will not be expensive because it's built in

>So, would
>
>Len(field) = 0
>
>be expensive since this is a built in function in Sql Server?
>
>
>
>>UDFs are very expensive in queries in VFP and SQL Server. You have to have a good reason to use them
>>
>>>Shouldn't it be possible to add a custom function in Sql Server so that I could still use Empty([feildname]) in an expression?
>>>
>>>
>>>Select 
>>> Case When Empty(Activejobitems.part_no) Then
>>>   Activejobitems.description
>>> Else  Activeparts.description End as description
>>>From JobItems
>>>Activejobitems  Inner Join Jobs Activejobs On Activejobitems.job_num = Activejobs.job_num
>>>Left Outer Join parts Activeparts On Activejobitems.part_id = Activeparts.id  Inner
>>>Join schedule On Activejobitems.job_num = ScheduleRecords.job_num
>>>Inner Join machines On ScheduleRecords.mach_num = Machines.mach_num
>>>Where ScheduleRecords.mach_num = '   ' AND
>>>  ScheduleRecords.status <>  'C'  AND
>>>  Activejobs.status =  'A'
>>>Order By [ScheduleRecords].[mach_num] , [ScheduleRecords].[order_mach]
>>>
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform