This is my query :
select * 
from tab a 
inner join tab2 b on a.id = b.id  
I have 20 columns, but I want to exclude one.
Do you have any performant way to do it please?
I know that I can use it when I have all data in one table but I want to it in this query.
 
     
    