I hereby claim:
- I am matheusvill on github.
- I am matheusvill (https://keybase.io/matheusvill) on keybase.
- I have a public key ASCQERapEPBqY3NSQB-R_oznI7Sdgo3pKSDhPwzazLQbZAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # Hello, and welcome to makefile basics. | |
| # | |
| # You will learn why `make` is so great, and why, despite its "weird" syntax, | |
| # it is actually a highly expressive, efficient, and powerful way to build | |
| # programs. | |
| # | |
| # Once you're done here, go to | |
| # http://www.gnu.org/software/make/manual/make.html | |
| # to learn SOOOO much more. |
| # Adicionar esta linha no ~/.bash_profile para conseguir acesso aos comandos do docker | |
| $(docker-machine env dev) |
| git config --global alias.tree "log --graph --full-history --all --color --pretty=tformat:\"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s%x20%x1b[33m(%an)%x1b[0m\"" |
| SELECT | |
| UTL_RAW.CAST_TO_VARCHAR2(LINHA_CLOB) | |
| FROM | |
| TABELA_CLOB; |
| -- Consulta | |
| SELECT | |
| REGEXP_SUBSTR('PAIS,UF,CIDADE','[^,]+', 1, LEVEL) AS RESULTADO | |
| FROM | |
| DUAL | |
| CONNECT BY REGEXP_SUBSTR('PAIS,UF,CIDADE', '[^,]+', 1, LEVEL) IS NOT NULL; | |
| -- Resultado | |
| 1 PAIS | |
| 2 UF |