插入数据并连接一个计数

时间:2015-08-06 22:01:18

标签: php mysql

我有一个问题,我需要计算记录并将其输入到同一个表中添加一个的字段中。

此代码有效

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
)

但它不允许我连接。

0 个答案:

没有答案