连接时选择不同字段

发布于 2024-10-12 15:58:02 字数 280 浏览 4 评论 0原文

我根据 MySQL 中共享的唯一标识符连接两个大表。因为字段数量很多,所以我不想在 SELECT 之后列出所有字段。相反,我想选择所有字段,但我不希望重复出现重复字段(在本例中为共享唯一标识符)。

对于此示例查询:

SELECT *
FROM Gr3_PracMath_Jan11_D1 as a, student_list_011811 as b 
WHERE a.StudentID = b.StudentID

重复字段 StudentID。有办法防止这种情况吗?

I am joining two large tables in MySQL based on a unique identifier they both share. Because there are a large number of fields, I do not want to list out all fields after SELECT. Instead I want to select all fields, but I do not want recurring fields (the shared unique identifier in this case) to be repeated.

With this example query:

SELECT *
FROM Gr3_PracMath_Jan11_D1 as a, student_list_011811 as b 
WHERE a.StudentID = b.StudentID

The field StudentID is repeated. Is there a way to prevent this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

征棹 2024-10-19 15:58:02

我相信,如果您使用 USING 关键字进行显式连接,您将不会得到重复的结果。

SELECT *
FROM Gr3_PracMath_Jan11_D1
LEFT JOIN student_list_011811 
USING (StudentID)

I believe that if you do an explicit join with the USING keyword, you won't get a duplicate.

SELECT *
FROM Gr3_PracMath_Jan11_D1
LEFT JOIN student_list_011811 
USING (StudentID)
我一向站在原地 2024-10-19 15:58:02

我认为不存在。您可以通过仅列出一半字段来减少工作量:

SELECT a.*, b.Field1, b.Field2...

I don't think there is. You might cut your work by listing only half the fields:

SELECT a.*, b.Field1, b.Field2...
等你爱我 2024-10-19 15:58:02

即使列很多,也不列出所有列也是不好的做法。硬着头皮把它们写下来。

It is bad practice to not list out all of the columns, even if there are a lot of them. Just bite the bullet and write them out.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文