Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のデータベーステーブルにはこの値があります。この電子メール値「abc@gmail.com」がデータベースに存在するかどうかを確認する必要があります。
abc@gmail.com edf@dfg.com xyz@abcinfo.com 12345@fdfg.com
'abc@gmail.com' 値がデータベース テーブルに存在する場合、出力は true になります。
ありがとうクマール
次のようなクエリを書くことができます
SELECT IF(COUNT(*) >0, TRUE,FALSE)as response FROM <tablename> WHERE emailid='edf@dfg.com';
select exists( SELECT 1 FROM <tableName> WHERE email LIKE 'abc@gmail.com' )