Answers for "how to use index in mysql"

SQL
1

how to create index mysql

# index_name will identify your index for future reference
CREATE INDEX index_name ON table_name (column_name);
Posted by: Guest on October-20-2020
0

mysql select statement after index

SELECT * FROM table1 USE INDEX (col1_index,col2_index)
    WHERE col1=1 AND col2=2 AND col3=3;
Posted by: Guest on September-07-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language