我table1
有
MBID | Artist
__________________
123321 The Beatles
123214 Led Zeppelin
123321 The Beatles
如何将所有distinct MBID's
及其相应的Artist
名称复制到一个新表中,以便新表只有 distinctMBID
的
MBID | Artist
__________________
123321 The Beatles
123214 Led Zeppelin
我试过了
insert into table2 (MBID,artist)
select distinct(table1.MBID),table1.artist
FROM danktable
但这给了我奇怪的组合,而不仅仅是不同的 MBID
当我创建MBID
主索引时,此查询出现错误,因为我得到非唯一MBID
值。
有人可以帮我吗?
谢谢 !