If I run the query in phpMyAdmin
:
SELECT COUNT(*) FROM ResultTable;
I get the warning (5.5.45 - MySQL Community Server):
This table does not contain unique column. Changing the grid of the show, editing, copying, and deleting is not available.
Then I make an existing field result_id
as Unique
:
ALTER TABLE ResultTable ADD UNIQUE (result_id);
Nevertheless I get the same warning after select
query, so where the trouble lies?