1

我有一张桌子,里面有id, sname,attendance

id  sname attendance month
1    xyz     p         12  
2    asd     p         12  
3    qwe     L         12 
4    tyy     A         12

我想重新插入下个月的id每个月。snameattendance

现在我想在这样的Attendance列中用 AB 重新插入第 1 个月的数据:

id  sname attendance  month 
 1    xyz     p         12  
 2    asd     p         12  
 3    qwe     L         12 
 4    tyy     A         12 
 1    xyz     ab         1  
 2    asd     ab         1  
 3    qwe     ab         1
 4    tyy     ab         1 
4

2 回答 2

2

如果我做对了:

INSERT INTO t (id,sname,attendance,month)
SELECT id,sname,'ab',(month%12)+1 from t
于 2012-12-26T10:28:14.333 回答
0

试试这个

INSERT INTO your_table (id,sname,attendance,month)
SELECT T.id, T.sname, T.attendance, M.m
FROM (SELECT 1 m UNION SELECT 2 UNION SELECT 3 UNION SELECT 4 UNION SELECT 5 UNION SELECT 6 UNION SELECT 7 UNION SELECT 8 UNION SELECT 9 UNION SELECT 10 UNION SELECT 11 UNION SELECT 12) AS M
CROSS JOIN your_table T
WHERE NOT EXISTS (SELECT * FROM your_table WHERE m=M.m)

最好不要使用保留字,例如MONTH表、列和其他对象的名称。

于 2012-12-26T06:50:50.967 回答