I want to select from C_Table
where Name='John'
and use like operator
for example
select Name from C_Table where Name='John' AND where Details like %Boy%
How to do this? Please help me...
(Table name is C_Table)
-----------------------------------------------
Name | P_No | C_No | Details |
-----------------------------------------------
John | 001 | 001 | Good Boy |
John | 002 | 002 | Naughty Boy |
John | 003 | 003 | Very Bad Boy |
Mary | 004 | 004 | Beautiful Girl |
Mary | 005 | 005 | Pretty Girl |
Mary | 006 | 005 | Gorgeous |
-----------------------------------------------