1
Reply

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

Imran Kabir

16y
4k
0
Reply

    select * from book where bookname like '%i%'

    Here book- table name

    bookname:- name of book on which u want to filter