We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
If there is multiple unique key (including PK), a non-PK key might be used. It is not the clustering key and it will be slow.
CREATE TABLE a.a ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `mobile` varchar(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `mobile_unique` (`mobile`) USING BTREE );