|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-05-25 09:45 UTC] kalowsky@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 07:00:01 2025 UTC |
Database sybase The following select works using slq advantage and returns values but when I use php I get nothing and NO errors either. SELECT table_name.num_a, table_name.num_b from table_name where table_name.num_b <> null and table_name.num_a=1111 I also tried SELECT table_name.num_a, table_name.num_b from table_name where table_name.num_b != null and table_name.num_a=1111 In both cases I get no results but when using SQL adavantage from sybase I get the expected results. The problems comes with the line table_name.num_b != null It seems like a bug. Please advise. Thank you