SQL EDITOR IS BROKEN

i've a table words with the and a table words_views, when i do
select word from words -- it works 
select word from words where words_views is null; -- not work syntax error on arround words_views 
select * from words_views -- it work 
select * from words_views where words is not null; -- not work syntax error arrounds words 

it always say there is a syntax error around the table after the key word "where";
and my table is correctly written
Was this page helpful?