MySQL Query : select * from ve123_about where is_show order by sortid asc

来源:百度知道 编辑:UC知道 时间:2024/05/16 09:11:25
MySQL Query : select * from ve123_about where is_show order by sortid asc
MySQL Error : Table 'msxian2009.ve123_about' doesn't exist
MySQL Errno : 1146
Message : MySQL Query Error

错误意思为:你的msxian2009数据库中的ve123_about表不存在;可能的原因是:
1.确定你当前进行语句查询使用的数据库是msxian2009;
2.确定你的msxian2009数据库中有表:ve123_about
所以建议你:
use msxian2009 #使用数据库msxian2009
select * from ve123_about where is_show order by sortid asc;
试试看

数据库表不存在,要么选错了数据库,要么数据库中没那张表;