MySQL Workbench reports “is not valid at this position for this server version” error

前端 未结 3 1507
不思量自难忘°
不思量自难忘° 2020-12-17 10:52

For the following SQL query:

SELECT COUNT (distinct first_name) from actor;

I receive the following error message:

\"SELECT         


        
3条回答
  •  抹茶落季
    2020-12-17 11:28

    Mine error resolved using 'db_name.' with table although I have already executed use 'db_name' command;

    select * FROM db_name.table_name;
    

提交回复
热议问题