I have a table named google. When I call SHOW CREATE TABLE google; I get:
CREATE TABLE `google` (
`index` bigint(20) DEFAULT NULL,
`name` text,
`rating` double DEFAULT NULL,
`address` text,
`price` text,
KEY `ix_google_index` (`index`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
I can see the name of index is index. I've tried to delete it using
ALTER TABLE google Drop INDEX 'index';
ALTER TABLE google DROP INDEX;
ALTER TABLE google DROP INDEX index;
ALTER TABLE google DROP INDEX `index`;
None of them seem to work. How can I delete it?