Select syntext for database search
i have a database and a table one colums with items name des items 1 pen,pencile 2 rubber,scale
all are in one column with seperated with coma when search from only pen how it is possible to show me row for 1 whole row
like search pen ok .... show me 1 pen,penciles
Assuming the name of the table is Office AND that the name of the column is stationary, try: SELECT * FROM Office WHERE stationary LIKE '%pen%'
SELECT * FROM Office WHERE stationary LIKE '%pen%'