I'm getting "Error 1109 : Unknown table 'questions' in where clause" when I
do the simplest query.
This is the query:
SELECT * FROM questions;
My database has the following two tables:
CREATE TABLE subscribers(
subscriber_id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY,
email varchar(50),
I'm getting "Error 1109 : Unknown table 'questions' in where clause" when I
do the simplest query.
This is the query:
SELECT * FROM questions;
My database has the following two tables:
CREATE TABLE subscribers(
subscriber_id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY,
email varchar(50),