I have two tables, essentially with the same data.....but
tblA
StudentID OutcomeID Acheived
1 1.1 Yes
1 1.2 No
1 1.3 Yes
etc
tblB
StudentID 11 12 13
1 y n n
Is it possible to write an update query to update tblB from tblA, especially given the "1.1" to "11" change that is needed?

tblA
StudentID OutcomeID Acheived
1 1.1 Yes
1 1.2 No
1 1.3 Yes
etc
tblB
StudentID 11 12 13
1 y n n
Is it possible to write an update query to update tblB from tblA, especially given the "1.1" to "11" change that is needed?