-2
  1. 类别表
  2. 子类表

类别表的结构

id, name, article.
1, About, About content
2, Contact Us, Call us on

AND 用于子类别表

id, cat_id, name 
1,  1, History
2,  1, Offices

有人可以告诉我一个 SQL 查询,它可以将数据插入到我提供的子类别表中(类别表名称,例如:关于但不是 id,& 子类别名称:Carrer)。我可以使用类别表名称来查找相应的 id 并将其用于插入 cat_id 但如何?

4

1 回答 1

0

Can't figure out your question

But the basic sql is

Insert SomeTable(SomeColumn1,... SomeColumn99) 
  Select OtherColumn1,.. OtheColumn99 From SomeOtherTable Where ....
于 2012-07-27T19:13:38.490 回答