Hi, This is supported (MySQL compatibility), but not documented under 'functions' as it uses a special syntax, similar to LIKE which also isn't a function. I guess I will have to better document it. Examples:
select * from system_range(1, 100) where x regexp '.3'; create table test(id int, name varchar(255)); insert into test values(1, 'Hello'); insert into test values(2, 'Hallo'); insert into test values(3, 'World'); select * from test where name regexp 'H.llo'; drop table test; See also http://h2database.com/html/grammar.html#condition_right_hand_side - and there is http://h2database.com/html/functions.html#regexp_replace Regards, Thomas -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
