Re: Regular Expressions

2005-10-26 Thread duschhaube
Michael J. Segel wrote: On Wednesday 26 October 2005 09:20, duschhaube wrote: Hi! Is it possible to use regular expressions in a select statement. for example select * from test where name="a*b" ciao Maybe its just your example, but what you're asking for is for

Re: Regular Expressions

2005-10-26 Thread Suresh Thalamati
duschhaube wrote: Hi! Is it possible to use regular expressions in a select statement. for example select * from test where name="a*b" ciao I don't think you can do that way. Using the like operator, one can do some pattern matching in Derby. For Example: create table

Re: Regular Expressions

2005-10-26 Thread Michael J. Segel
On Wednesday 26 October 2005 09:20, duschhaube wrote: > Hi! > > > Is it possible to use regular expressions in a select statement. > > for example select * from test where name="a*b" > > ciao Maybe its just your example, but what you're asking for is for all

Regular Expressions

2005-10-26 Thread duschhaube
Hi! Is it possible to use regular expressions in a select statement. for example select * from test where name="a*b" ciao