Advantage of BTREE?

Viewed 34056

I create indexes without the USING BTREE clause. Is there any advantage of using BTREE index?

CREATE INDEX `SomeName` USING BTREE ON `tbl_Name`(`column_name`);
5 Answers
Related