我有一个问题,我需要计算记录并将其输入到同一个表中添加一个的字段中。
此代码有效
INSERT INTO t_grupo( nombre_grupo, cod_grupo )
VALUES (
"Christian", COALESCE( (
SELECT COUNT( * )
FROM t_grupo t
WHERE t.t_clase_cod_clase =3 ) , 0
)
)
但我还需要允许我使用如此连接:
INSERT INTO t_grupo(nombre_grupo, cod_grupo)
VALUES (
"Christian",
COALESCE(
(
SELECT concat(COUNT(t.t_clase_cod_clase)+1,('.')) FROM t_grupo t WHERE t.t_clase_cod_clase= 3
), 0
)
但它不允许我连接。