For years, I've always used phpMyAdmin to create my mySQL databases -- very simple: I type the name of the new database and click the, "create database," button.
Now, with my brand new webhost, there's a new version of phpMyAdmin which allows me to choose:
a.) mySQL "connection" collation
b.) "create database" collation
There are dozens and dozens of choices, including:
binary
ascii_bin
ascii_general_ci
latin1_gin
latin_general_ci
utf8_general_ci
utf8_unicode_ci
Beings I now have a choice, which is the fastest most efficient collation schema to pick?
(I don't know if it helps, but my mySQL database is an offer-pricelist consisting of 100,000 rows, with 10 columns consisting of varchar, text, decimal(4,2) and one key.)
Thank you!!