gpt4 book ai didi

mysql - SQL 语法错误 - INSERT 中的 SELECT 语句

转载 作者:行者123 更新时间:2023-11-29 07:47:25 24 4
gpt4 key购买 nike

我有这行 sql,它在 select 语句的右括号后面出现语法错误。我相信我可以用这种方式编写代码。有其他选择吗?

select 语句中的变量来自 GET,其他变量来自 POST。如有任何帮助,我们将不胜感激。

$sql2="INSERT INTO playerRegSeason 
(playerID, year, teamID, gp, minutes, pts, oreb, dreb, reb,
asts, stl, blk, turnover, pf, fga, fgm, fta, ftm, tpa, tpm)
VALUES ((
SELECT playerID FROM players WHERE firstname='$firstname'
AND lastname='$lastname' AND firstseason=$firstseason), $year,
'$team', $gp, $minutes, $pts, $oreb, $dreb, $reb, $asts, $stl,
$blk, $turnover, $pf, $fga, $fgm, $fta, $ftm, $tpa, $tpm)";

最佳答案

从选择插入时不要使用VALUES

INSERT INTO abc (foo, bar)
SELECT x, y FROM z

关于mysql - SQL 语法错误 - INSERT 中的 SELECT 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27371589/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com