使用 JSTL 从数据库中获取数据时出现语法错误

Getting Syntax Error while Fetching Data from Database Using JSTL

获取语法错误当我尝试在 Netbeans 中使用 JSTL 和 Derby 数据库从数据库中检索数据时请帮助我..

<body>
<sql:setDataSource
    var="myDS"
    driver="org.apache.derby.jdbc.ClientDriver"
    url="jdbc:derby://localhost:1527/nit"
    user="root" password=" "
/>

<sql:query var="listUsers"   dataSource="${myDS}">
    SELECT * FROM NITIN;
</sql:query>

<div align="center">
    <table border="1" cellpadding="5">
        <caption><h2>List of users</h2></caption>
        <tr>
            <th>Name</th>
            <th>Mobile</th>

        </tr>
        <c:forEach var="user" items="${listUsers.rows}">
            <tr>
                <td><c:out value="${user.name}" /></td>
                <td><c:out value="${user.mobile}" /></td>

            </tr>
        </c:forEach>
    </table>
</div>

提前致谢....请...

SELECT * 来自 NITIN;这里分号';'不需要