ixxalnxxi
03-25-2008, 07:28 PM
my query is as follows,
SELECT * FROM Orders WHERE OrderID = $_GET[OrderID] AND Orders IS NOT NULL
i'm trying to collect the data from the row with that orderid and if the data is not null. i am familiar with 'AND ColumnName IS NOT NULL', but how would i replace ColumnName with something that represents every column in the table?
SELECT * FROM Orders WHERE OrderID = $_GET[OrderID] AND Orders IS NOT NULL
i'm trying to collect the data from the row with that orderid and if the data is not null. i am familiar with 'AND ColumnName IS NOT NULL', but how would i replace ColumnName with something that represents every column in the table?