简体   繁体   中英

SQL error: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax

I have a query controller

$query = $this->subtaskModel->getUserQuerysprint($user['id']);

and model query

public function getUserQuerysprint() 
{
    return $this->db->table("select * from sprint");
}

I got an error

amInternal Error: SQL error: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'select * from sprint' at line 1

Any help would be appreciated

please add more details about this because it's very hard with little information/details. but could you try this.

return $this->db->table("select * from `sprint`");

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM