阿里云-maxcompute---sql语法

Posted 黑小莲花

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了阿里云-maxcompute---sql语法相关的知识,希望对你有一定的参考价值。

1.CAST

Cast(字段名 as 转换的类型 ),其中类型可以为:

CHAR[(N)] 字符型 
DATE  日期型
DATETIME  日期和时间型
DECIMAL  float型
SIGNED  int
TIME  时间型

例如表table1

date

2015-11-03 15:31:26

select cast(date as signed) as date from  table1;

结果如下:

date

20151103153126

 

select cast(date as char) as date from  table1;

结果如下:

date

2015-11-03 15:31:26

 

 

select cast(date as datetime) as date from  table1;

结果如下:

date

 

2015-11-03 15:31:26

 

select cast(date as date) as date from  table1;

结果如下:

date

 

2015-11-03

 

select cast(date as time) as date from  table1;

结果如下:

date

15:31:26

这里date对应日期,time对应时间

以上是关于阿里云-maxcompute---sql语法的主要内容,如果未能解决你的问题,请参考以下文章

基于MaxCompute SQL 的半结构化数据处理实践

为了让开发者写MaxCompute SQL更爽,DataWorks 增强SQL 编辑器功能

为了让开发者写MaxCompute SQL更爽,DataWorks 增强SQL 编辑器功能

在阿里云 既php和mysql装好之后,如何安装zabbix

阿里云服务器晚上运行定时任务报Too many connections

阿里云数据库配置文件