英文:
Filter within column in SQL
问题
我有一个名为Sample的MySQL数据库中的表格
在这个表格中,有一个特定的列 "Claims"
在这个列中,数据从"Payment"开始
请问如何筛选出只包含"BSA"、"TLS"和"SSL"的数据?
英文:
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"
答案1
得分: 0
select * from Sample
where Claims like '%BSA%' or Claims like '%TLS%' or Claims like '%SSL%'
英文:
select * from Sample
where Claims like '%BSA%' or Claims like '%TLS%' or Claims like '%SSL%'
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论