I’m currently trying to create a mySQL database that holds hashes such as MD5 hashes. I’m using PHPmyAdmin version 3.3.9, and MySQL client version: 4.1.22
I already created a database named hashes. I’m new to mySQL so how can I add a table with data for a hash?
Hash column should be a
CHAR(32)as that is the length of the hash:If you want to select from the table given user input:
You can add a key on
hashfor better performance.