My database table has columns email, username and password. I'm trying to insert these test values into them, but the query seems to be interpreting the value for the test email in a strange way. What's wrong with this query?
mysql> INSERT INTO `tbl_user`
-> (`email`, `username`, `password`)
-> VALUES
-> (`[email protected]`, `Test_User_One`, MD5(`test1`)),
-> (`[email protected]`, `Test_User_Two`, MD5(`test2`))
-> ;
ERROR 1054 (42S22): Unknown column '[email protected]' in 'field list'