458 只需使用表名: SELECT myTable.*, otherTable.foo, otherTable.bar... 这将选择所有列myTable和列foo和bar从otherTable。 — 塔图·乌尔曼嫩(Tatu Ulmanen) source 如果您想使用count(myTable。*),它是如何工作的? — Stevanicus 2012年 您还可以使用别名,因此当您从表名中选择*作为tn时,可以从表名中选择select tn。*作为tn。 — adudley
39 我确实需要更多信息,但会有所帮助。 SELECT table1.*, table2.col1, table2.col3 FROM table1 JOIN table2 USING(id) — 西蒙 source
8 select a.* , b.Aa , b.Ab, b.Ac from table1 a left join table2 b on a.id=b.id 这应该选择表1中的所有列,并且仅选择表2中列出的列,并以id连接。 — 姆齐拉 source
3 加入表后,使用别名来引用表以从不同表中获取列。 Select tb1.*, tb2.col1, tb2.col2 from table1 tb1 JOIN table2 tb2 on tb1.Id = tb2.Id — Himanshu source 2 除非您要添加新内容,否则请不要回答。(特别是8岁的问题,具有很高的评价/充分的答案。) — philipxy