Advertisement

1 - 10 of 232 containing alltags:("isnull") (0 seconds)
My vbscript reference says the right way to check for a null field is:   isNull ( mystring ) so why doesn't this work? if ( IsNull( sList ) ) then      'do nothing       else       Re...
Zones: ASPDate Answered: 02/21/2000 Grade: B Views: 6
Hi, I need to update a column (+1) for all entry matching in a list. UPDATE table SET err = isNull(0,err) + 1 WHERE custno in (@list)
Zones: MS SQL ServerDate Answered: 01/03/2003 Grade: A Views: 0
I am trying to use a ISNULL function in a mathematical statement.  How can I get this working? In SQL I use ISNULL(({Field1}),0) - ISNULL(({Field2}),0) * ISNULL(({Field3}),0) So how could I ...
Zones: Crystal Reports SoftwareDate Answered: 02/19/2003 Grade: A Views: 41
Hi This may be very basic question - but can I use isnull while creating a view e.g is this ok. SELECT               (isnull(B.field1,0)/B.field2) NET, FROM                TABLE1 ...
Zones: OracleDate Answered: 03/19/2003 Grade: A Views: 0
I have a library database with a field for author's last name and another for first name.  I am trying to design an "author search" query for the library.  The first and last name for the search ar...
Zones: MS AccessDate Answered: 04/25/2003 Grade: A Views: 0
for a table temp which have a column is named id varchar(20) in select clause select 1 from temp t where isnull((select id from temp where t.id= id and 1=2 ), '2')  =  '2' will reutrn n...
Zones: SybaseDate Answered: 07/11/2004 Grade: A Views: 0
in vb6 there was IsNull()... is there a replacement in vb.net?    - Marc
Zones: Visual BasicDate Answered: 12/01/2003 Grade: A Views: 252
Hello, Here's the problem. if this (If Form2.SetAlertsViewer.ListItems(H).ListSubItems(1) = "Source Interface" Then) isn't true SourceIntCol collection never gets built and this (If SourceIntCol...
Zones: ProgrammingDate Answered: 04/14/2004 Grade: A Views: 102
dear experts, Below is a set of SQL.   I need to update the value of col1=0, i tried the isnull function to accomplish this, obviously i am missing something.  help greatly appreciated than...
Zones: SybaseDate Answered: 11/03/2004 Grade: A Views: 4
I have a problem...I have the following code to display inventory values for groups in a web page.  i am able to display the information if the value is either null or greater than 0....but i get a...
Zones: ASPDate Answered: 04/11/2005 Grade: B Views: 0