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
manage multiple sites from one admin panel drupal/joomla
xp sp2 clients wont log or ping server 2003
setup basic ipsec vpn for windows on cisco sa520
Ubuntu - Convert Desktop Hard Drive to Laptop? Just ext4 format and copy all files?
reCAPTCHA PHP not failing when nothing is entered; works fine when something is entered
Excel/csv, move rows to another sheet based on changing value in column
Need a "quiz" application that saves to a database
Way to force data in Excel into the format I want?
Send Mail Using gmail pop3 in VB.Net
interpreting C++ code into VB.NET