How to get a book from database MS access that contain 'i' charactor in it's name like internetbook or networkingbook. what will be java query for this purpose?
Imran Kabir
select * from book where bookname like '%i%'
Here book- table name
bookname:- name of book on which u want to filter