This error message appears in MySQL. It is very similar to "Table (X) doesn't exist" error message. Both of these error messages mean that the table with the given name doesn't exist in the database.
You can create table by using "CREATE TABLE" command. Ex:
CREATE TABLE users (name VARCHAR(10), surname VARCHAR.(10));