quarta-feira, 22 de junho de 2016
Oracle: Insert com Select
INSERT INTO TABELA1(CAMPO1, CAMPO2, CAMPO3)
(SELECT CAMPO1, CAMPO2, CAMPO3 FROM TABELA1 WHERE TABELA1 .GRUPO = 1)
sexta-feira, 10 de junho de 2016
Comprar String com múltiplos valores em uma expressão
Fonte: http://stackoverflow.com/questions/10205437/compare-one-string-with-multiple-values-in-one-expression
str.matches("val1|val2|val3");
For case insensitive matching:
str.matches("(?i)val1|val2|val3");
Assinar:
Postagens (Atom)