Looking to create a MySQL database from the command line using numbers.
mysql -h ip.addr.es -u root -papassword -e "CREATE DATABASE IF NOT EXISTS 234";
Fails
Yet
mysql -h ip.addr.es -u root -papassword -e "CREATE DATABASE IF NOT EXISTS test";
works.