我正在創(chuàng)建一個簡單的 php api 來管理學(xué)生。使用的 DBMS 是 Postgres。在創(chuàng)建查詢以將數(shù)據(jù)插入 psql 數(shù)據(jù)庫時,出現(xiàn)錯誤。我正在使用 Postman 發(fā)送請求。而不是使用SET我嘗試使用VALUES,但仍然給了我一個錯誤說,列name和course存在,但我不能在查詢部分運(yùn)行。代碼行:$query = 'INSERT INTO ' . $this->table . ' SET name = :name, course = :course';我得到的錯誤:Fatal error: Uncaught PDOException: SQLSTATE[42601]: Syntax error: 7 ERROR: syntax error at or near "SET" LINE 1: INSERT INTO students SET name = $1, course = $2 ^
無法使用 PHP 將數(shù)據(jù)插入 Postgres 數(shù)據(jù)庫
慕工程0101907
2021-11-05 16:03:10