link a column between two tables [closed]

@Dr.DEVELOPER you have to use join.
i think your query may be like this.

SELECT * FROM STUDENTS INNER JOIN RESULTS on STUDENTS.STDname = RESULTS.STDname

Leave a Comment