Hello,
I have a table and I need only one record from it, even if this record has a duplicate. How can this be written in SQL? thanks in advance
SELECT UniCode, CmpUnicode2, CmpUnicode1 FROM test_table tt JOIN yt_unicode yu ON yu.CmpUnicode1 = tt.CmpUnicode1 HAVING count (*) = 1
