just some info for anyone else who's not a sql guru:<BR><BR>i did the following selection on a table:<BR><BR>SELECT * FROM Table WHERE myField <> 'active'<BR><BR>the values in that colum are a mix of ...
You can define data fields to not store null data by specifying the NU option in data definition statements. In normal data storage (that is, NU not specified), a null value is represented by two ...
Okay, I'm working with php to add a row to my MySql table that is called 'addresses'. I use the following code to add my row, which works (kind of) perfectly. <BR><BR ...