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.