假设有张表(tablesName) 里面有个 字段(field)存放的是日期类型的数据 2020-06-02 07:10:20.111
select SUBSTR(field,1,4) as 年 from tablesName; -- 获取年 2020
select SUBSTR(field,6,2) as 月from tablesName; -- 获取月 06
select SUBSTR(field,9,2) as 日from tablesName; -- 获取日 02
select SUBSTR(field,12,2) as 时 from tablesName; -- 获取小时 07
select SUBSTR(field,15,2) as 分 from tablesName; -- 获取 分 10
select SUBSTR(field,18,2) as 秒 from tablesName; -- 获取 秒 20
或者可以使用相关函数直接获取 年月日
select year(field) as 年 from tablesName; -- 获取年 2020
select month(field) as 月from tablesName; -- 获取月 06
select day(field) as 日from tablesName; -- 获取日 02