Microsoft
Software
Hardware
Network
Question : User defined function
I have a user define function that if
@PlansFolderCount OR @PlansDocumentCount is > 0
the RETURN should say "greater" orthwise it should say "less"
Answer : User defined function
IF (@PlansFolderCount > 0) OR (@PlansDocumentCount >0)
BEGIN
SELECT 'Greater'
END
ELSE
BEGIN
SELECT 'Less'
END
Random Solutions
Total installation size footprint windows 7
bootable usb
EtherChannel on Cisco 2960 switch intermittent dropped packet
Excel VBA Find First Find last
Queries inside a while loop
HP PSC 2110 won't print - just blank page
Email keeps going into Junk Mail Folder in Outlook 2003 on Exchange 2003
Remote Web Workplace different website address
VB.NET simple SendMail program error: System.Net.Mail.SmtpExcept
ion: Failure sending mail
How can i do insert more data with insert query with more select statment linqToSQL?