"is there any sql-query to check the value is exist or not in db table [closed]" Code Answer

3

you can do something as simple as select case when count(1) > 0 then 'true' else 'false' end from table where email = 'abc@gmail.com'

but you should give some more information for a beater answer.

By eWizardII on May 30 2022

Answers related to “is there any sql-query to check the value is exist or not in db table [closed]”

Only authorized users can answer the Search term. Please sign in first, or register a free account.