I am running a query 'describe table' and it returns value of 'null' for the 'default' column. However, when I try to print the value from database to an HTML table it is not printing 'null'. It is just always blank.
This is how I am storing the data from database:
@nulls = ();
while (($null) = $sth1->fetchrow_array)
{
push (@nulls, $null);
}
When I print the contents of array @nulls
it never prints the literal value of 'null'. It is always blank. Is there a way to overcome this problem?