如何实现这样一个insert语句?
有两个表
主表:T1
id name
--------------
1 a
2 b
次表:T2
id tel
--------------
1 1111111
1 2222222
2 3333333
2 4444444
2 5555555
T1.id与T2.id是一对多关系,强制insert和update关系
T1.id标识,会自动编号
如果想执行同时对T1和T2表添加一个新记录
insert into T1 {name} value {'c'}
在T2表中添加一个相应的tel,因为T1.id是标识,难道还要先用select查询一下id?
如果是在T2表中添加两个记录又该怎么办?
我还不会用表关系
谢谢