I’ve a table name: Sample in MySql Database
Inside this table, there is particular column "Claims"
Within this column the data starts from Payment
Can you please let me know how to filter out data that has only "BSA" and "TLS" and "SSL"
>Solution :
select * from Sample
where Claims like '%BSA%' or Claims like '%TLS%' or Claims like '%SSL%'
