--- Common table expression on the fly
WITH cte_usuario AS (
SELECT * FROM (
VALUES (1,GETDATE(),'Pessoa 1')
, (2,GETDATE(),'Pessoa 2')
) a(id,created_at,name)
) SELECT * FROM cte_usuario CTU
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dev_install () { | |
yum -y update | |
yum -y upgrade | |
yum install -y \ | |
wget \ | |
gcc \ | |
gcc-c++ \ | |
openssl \ | |
python27-devel \ | |
python27-virtualenv \ |
OlderNewer