I am using MS Sql server and I have 2 tables as below;
School(scid, name, address, ....)
Student(scid, studentName, studentSurname, ....)
What I want to query is;
SELECT * FROM Student ST INNER JOIN School SC ON ST.scid = SC.scid;
But I don't want to get double scid field as result(It returns scid and scid_1). I mean
SELECT *(except School.scid) FROM Student ST INNER JOIN School SC ON ST.scid = SC.scid;
Is there a way to get all fields except one?