我正在尝试从数据库中获取最新帖子。如果运行以下代码,则会收到以下消息:

“无效的查询:您的SQL语法有误;请在与MySQL服务器版本相对应的手册中找到在第2行的'TABLE newsposts ORDER BY newsposts.post_id DESC'附近使用的正确语法。

<?php
            $getPosts = mysql_query("SELECT newsposts.post_id, newsposts.post
                     FROM TABLE newsposts
                 ORDER BY newsposts.post_id DESC
                    LIMIT 1") or die('Invalid query: ' . mysql_error());
            while($getPosts_Array = mysql_fetch_array($getPosts)){

                $post_id = $getPosts_Array['post_id'];
                $post = $getPosts_Array['post'];

                echo "
                            $post;


                ";
            }
        ?>

最佳答案

FROM子句中假设一个表,在SQL语句中删除“ TABLE”。

10-01 19:38