CompCodeBoy
Programmer
SET @strSQL = @strSQL + ' WHERE Isdate(Date_Requested) <= ''0'''
The above is not producing the desired result in a sql string but it does in query analyzer.
I'm basically tring to look for dates with a null value.
I got this
SET @strSQL = @strSQL + ' WHERE date_requested>''01/01/1900 '''
which works fine but I need to OR the above with WHERE Isdate(Date_Requested) <= ''0'''
any help would be appreciated
RA
The above is not producing the desired result in a sql string but it does in query analyzer.
I'm basically tring to look for dates with a null value.
I got this
SET @strSQL = @strSQL + ' WHERE date_requested>''01/01/1900 '''
which works fine but I need to OR the above with WHERE Isdate(Date_Requested) <= ''0'''
any help would be appreciated
RA