hi all ,
i want to write a select statement like below :
select distinct col1 from table
where coL1 IN ('B%','E%','G%')
The data for col1 is not static hence i need to pick values which starts with B,E,G.
Above sql is not working.
Kindly suggest fix/alternate for above issue.