The two tables are merged together

I want to merge the data of the two tables together. One column of the data is ID, merging the data of the same ID. How to operate it? SQL

< hr >

clipboard.png
Why is it that sometimes editors can and sometimes not?

Sql
Mar.05,2021

SELECT a.*,b.* FROM a INNER JOIN b ON b.ID = a.ID
Menu