A(p,q,r,...)
B(p,l,m,n,...)
select <columns>
from A join B on A.p=B.p
how do I write expression where I would like to show
A.*
But everything in B except p
I don't want to list them by hand:
`select A.*, B.l, B.m, B.n, ..`.
Because the number of columns in B can be huge. Is there any SQL syntax to achieve this?