Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6136417
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T17:36:03+00:00 2026-05-23T17:36:03+00:00

I am trying to edit a field in MySQL via PHP to NOT NULL

  • 0

I am trying to edit a field in MySQL via PHP to NOT NULL and AUTO_INCREMENT. I have tried the following route to do this but I keep getting errors. Any idea why?

$con = mysql_connect("host", "user", "pass");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("database_name", $con);

$int = "ALTER TABLE `table_name` CHANGE `column_name` `column_name` INT(11) NOT NULL AUTO_INCREMENT";

if (!mysql_query($int,$con))
  {
  die('Heres Your Error: ' . mysql_error());
  }

mysql_close($con)

This is the error message:

Incorrect table definition; there can be only one auto column and it must be defined as a key

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T17:36:04+00:00Added an answer on May 23, 2026 at 5:36 pm

    The problem with MySQL in this instance is the “chicken and the egg” situation.

    If the table already has an AUTO_INCREMENT column, the first half of the error message applies in that only one column can be AUTO_INCREMENT.

    Creating a table with AUTO_INCREMENT must be done in conjunction with defining the PRIMARY KEY.

    If the table does not have an AUTO_INCREMENT column, the second half of the error message applies in that creating an AUTO_INCREMENT must be done in conjunction with PRIMARY KEY.

    Try this:

    ALTER TABLE `table_name` CHANGE `column_name` `column_name` INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to edit a record. I have the default route. When I
I'm trying to update a email field in Mysql through php. i keep getting
im trying to edit a field using code instead of the wizard. im not
I'm trying to insert NULL into the mySQL databse with PHP. I've got: $myVariable=$_POST[inputfield];
i'm trying to make this form sticky but it's not doing. What i'm trying
I have been trying to get this query to work but I am stumbed
I have a relatively big SSIS package which I'm trying to edit. I basically
I'm trying to enter edit mode on a specific cell like this: void MainWindow::on_addButton_released()
Im trying to hammer togehter a WYSIWYG-edit in c# following some examples from here
i am trying to edit a mysql database record , there is seem to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.