Friday 25 October 2019

mysql - Indexing sql columns to speed up join query




On the first answer on this post: Update one MySQL table with values from another
it states that in order to speed up the query an index must be created. How do I do this?



I know it's fairly simple I just can't figure out how..


Answer



How to create index (official doc)


No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...