Table_1
type | description
Error Some description
Success Another description
Table_2
type | description
Error 1 Some description
Error 2 Another description
Error 3 Yet another description
これら 2 つのテーブルを type フィールドで結合する必要があります。これは、両方のテーブルで varchar データ型です。問題は、「エラー」が「エラー 1」または「エラー 2」と同じではないため、両方のフィールドを比較すると空の結果が返されることです。私はもう試した:
select * from Table_1 a
left join Table_2 using (type)
select * from Table_2
where type in (select distinct type from Table_1)
どんな助けでも大歓迎です、事前に感謝します
編集: Table_1 の型が Table_2 の型に含まれている場合、結果を取得できるはずです。取得するのが少し難しいことはわかっていますが、Table_1 にはさまざまなシナリオの一般的なエラーがあり、Table_2 にはこれらと同じエラーが含まれていますが、その横にもう少し情報があります。Table_2 はログ ファイルからのデータでいっぱいで、それに対してできることはほとんどありません。