I have database table but without the index, and I want to add index id to that table, that will be uniqe for each row, how can I do this using mysql?
I have database table but without the index, and I want to add index
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
Assuming you don’t have a key on the table already you can do this:
And remember you can add
FIRSTto the end of that line to make it the first column which would be a good idea for an id.