SQL

current selection doesn’t contain unqiue column – solved

Hello buddy, I hope you are doing well in this article we will see how we can fix the above error current selection doesn’t contain the unique column.

You have seen this type of error message in your phpmyadmin or other MySQL software, and after showing this error you are unable to edit, update, delete, and add anything to the particular column.

So in the today blog we will fix this error, by running a simple SQL query in our table.

To fix this error Just the run the below SQL code.

ALTER TABLE `tablename`
ADD PRIMARY KEY (`id`);

I hope the above sql query fix your current selection doesn’t contain unqiue column error.If your error is fixed please rate us.

Shaiv Roy

Hy Myself shaiv roy, I am a passionate blogger and love to share ideas among people, I am having good experience with laravel, vue js, react, flutter and doing website and app development work from last 7 years.

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button