Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

how to add a index to live table sql

ALTER TABLE `my_table`  
ADD INDEX `indexname` (`created_at`)
,LOCK=NONE; #add this line to query for live stuff
 
PREVIOUS NEXT
Tagged: #add #index #live #table #sql
ADD COMMENT
Topic
Name
6+9 =