Home > Enterprise >  Default NULL entry in MySQL table
Default NULL entry in MySQL table

Time:01-23

Not a duplicate of table value with NULL entry

The output of "select * from film where film_id = 27" note:film_id is a primary key.

enter image description here

I get the NULL entry for all select statements. I can see it since the table is created.

CodePudding user response:

I believe that's just a quirk of MySQL Workbench that lets you insert rows if you click those NULL squares and enter values there. That row doesn't exist in your table.

  •  Tags:  
  • Related