これが問題のあるレコードで機能する場合
select * from table_name
where email like '%some email%'
次に、データに先頭または末尾のスペースがあります。
これを元に戻すには、このように既存のテーブルデータを更新します
update table_name
set email = trim(email)
where email like '%some email%'
これが問題のあるレコードで機能する場合
select * from table_name
where email like '%some email%'
次に、データに先頭または末尾のスペースがあります。
これを元に戻すには、このように既存のテーブルデータを更新します
update table_name
set email = trim(email)
where email like '%some email%'