I am new to MySQL and I have a problem: if I try to create a table in my newly created โrecommendโ database, I get the following error:
ERROR 1146 (42S02): Table "recommend. User" does not exist
I checked related posts here and on the Internet, but nothing helped. If I use the MySQL command line, I still get the same error.
SELECT DATABASE() FROM DUAL; +
but then when I ran this command:
mysql> use recommend Database changed mysql> CREATE TABLE Users (UserName VARCHAR(20),password VARCHAR(20),PRIMARY KEY(UserName));
ERROR 1146 (42S02): Table "recommend. User" does not exist
I also tried using Navicat and still getting the same error :(
mysql
Amit p
source share