PHPMyAdmin alert box - missing value in the form - all usual fields are filled out?

前端 未结 12 1033
猫巷女王i
猫巷女王i 2020-12-11 16:17

For some reason while using PHPMyAdmin and attempting to save a table, even though I\'ve entered all of the information I usually do I\'m getting an alert box popping up wit

相关标签:
12条回答
  • 2020-12-11 16:49

    Got the same error, probably a Bug.

    What Lex said: "Maybe if you define a column NOT NULL (ie. don't check the box in the Null column, you have to define a default value? – Lex 20 hours ago"

    • Nope. Doesn't work either and wouldn't make much sense. If you don't define a default value, the server will either insert an empty string, or fail the query; depending on settings.
    0 讨论(0)
  • 2020-12-11 16:51

    Did you give it a table name. I had the same problem & I simply forgot to give it a table name...at the top.

    0 讨论(0)
  • 2020-12-11 16:52

    I just encountered this.... It turns out I was forgetting to provide a name for the new table....

    0 讨论(0)
  • 2020-12-11 16:57

    Stop & start MySQL service. You can create table.

    0 讨论(0)
  • 2020-12-11 16:58

    It's a bug I also "met" on phpMyAdmin v.3.5.1 - Disabling Ajax (and by default I love to disable it) will do the job.

    0 讨论(0)
  • 2020-12-11 16:59

    I had this issue with the SQL form (where you can paste larger blocks of MySQL code). Not sure if it's a fluke, but I selected all of my input and then hit Go..and it worked.

    0 讨论(0)
提交回复
热议问题