In SQL Server, I can create a non clustered index like this:
CREATE NONCLUSTERED INDEX idx_My_Table
ON [dbo].[MyTable] ([my_field_1])
INCLUDE ([my_field_2],[my_field_3],[my_field_4])
In MySQL, I create the index as
ALTER TABLE `MyTable`
ADD INDEX `idx_My_Table` (`my_field_1`, `my_field_2`, `my_field_3`, `my_field_4`);
Is there an exact equivalent of the SQL Server construct in MySQL or the closest that can be changed to achieve it?