Shinu Thomas
Shinu Thomas

Reputation: 5316

search query in sqlite

I have a table with one field as name.The values in this fields are

How i can search the values excatly matching ki-ran(inside bracket) from this values so i can get only kiran-(ki-ran).txt i have used LIKE ('%ki-ran%') But it is showing all the values.Thanks in advance

Upvotes: 0

Views: 352

Answers (1)

EmptyStack
EmptyStack

Reputation: 51374

Your LIKE clause should look like LIKE '%(ki-ran)%'.

Upvotes: 1

Related Questions