我正在构建 ac# 程序,目前正忙于从 MYSQL 数据库中获取数据并将它们绑定到网格视图。我已经研究了几天,但无济于事。
我在数据库中有 4 个表。
table 1 - alpha
table 2 - bravo
table 3 - charlie
table 4 - delta
attributes of alpha (id, type, user, role )
attributes of bravo (id, type, date, user)
attributes of charlie (id,type, cat, doneby, comment)
atttibutes of delta (id,type, cat, doneby)
* the pk of alpha and bravo is (id)
* the pk of charlie and delta is (id, type)
我之前通过内部连接 alpha、bravo 和 charlie 做了一个查询1,这导致了成功的结果
(id, type, date, user, role, cat, doneby, comment)
和
我之前还通过内部连接 alpha、bravo 和 delta 进行了查询2,这导致了成功的结果
(id, type, date, user, role, cat, doneby)
现在,我正在尝试构建一个 query3,它将 query1 和 query2 的结果合并在一起。
我尝试的结果导致 (id, type, date, user, role, cat, doneby, comment,id, type, date, user, role, cat, doneby)
由于我不想要重复的列,因此我想通过将记录作为新元组放在结果表中来寻求有关如何使结果变得像下面这样的建议。
(id, type, date, user, role, cat, doneby, comment)
谢谢!
PS:由于(id,类型),PK不会造成问题