Re: [GENERAL] Regular expression and Group By

2006-12-19 Thread Clodoaldo
2006/12/18, Jeff Davis <[EMAIL PROTECTED]>: On Fri, 2006-12-15 at 17:21 -0200, Clodoaldo wrote: > -- drop table test_table; > create table test_table (tname varchar, value integer); > insert into test_table values ('[ab]x', 1); > insert into test_table values ('[ab]y', 2); > insert into test_tabl

Re: [GENERAL] Regular expression and Group By

2006-12-18 Thread Jeff Davis
On Fri, 2006-12-15 at 17:21 -0200, Clodoaldo wrote: > -- drop table test_table; > create table test_table (tname varchar, value integer); > insert into test_table values ('[ab]x', 1); > insert into test_table values ('[ab]y', 2); > insert into test_table values ('[Ab]z', 3); > insert into test_tabl