What exactly is "KEY" (speaking strictly about MySQL performance/features)? Is it just a fancy name for INDEX?
When you use PRIMARY KEY, it adds INDEX as well. Is there some "KEY" that does not create INDEX?
Are UNIQUE KEY and UNIQUE INDEX the same thing?
How many PRIMARY KEYs can be per table on MySQL (some sources say only one, some that it is more, depending on SQL version?)
In phpMyAdmin there is something like "power" of KEY, what it means? And since this (and all KEYs) is listed below "INDEXES" does it mean that KEY is a synonym to INDEX?
What if I made a table without any KEY? Would it have any effect apart from no INDEX?
To me it seems like there are 3 types of indexes/keys PRIMARY KEY = not null + unique value + index, UNIQUE = unique value (but not necessarily indexed?), INDEX = index.