debug-nselect--from-a-where-and-;
There are two errors in this SQL statement:
-
The table name is missing or incomplete. It should be something like "SELECT * FROM table_name WHERE condition;"
-
There is an extra "AND" keyword that is not serving any purpose.
The corrected SQL statement would be:
SELECT * FROM a WHERE condition;
原文地址: http://www.cveoy.top/t/topic/rDW 著作权归作者所有。请勿转载和采集!