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
onmouseover is not working in Mozilla
AJAX, JQUERY, server date timestamp
convert to valid DateTime
Dynamics AX 2009 - AOS Performance
Importing a Word document To Fox Pro Tables
File permissions
Reset display resolution windows 7
HTTP Error 500.19 - Internal Server Error
LWAP are unable to join Cisco Wieeless Controller 4400
asp.net: How to determine if a when a user login. is an Admin Account, * the menu is selected to show admin pages & reports.