Search multiple columns in sqlite SELECT FROM

前端 未结 4 1688
鱼传尺愫
鱼传尺愫 2021-01-29 12:04

I use this code to search for Column A. What modification should I make if I want to search Column A and Column B simultaneously?

String sql = \"SELECT * FROM \"         


        
4条回答
  •  孤街浪徒
    2021-01-29 12:35

    Make two differrent query. And combine results by union keyword.

    select * from TABLE_NAME where columnA like ? order by columnA limit 100
    union
    select * from TABLE_NAME where columnB like ? order by columnA limit 100
    

提交回复
热议问题