使用substr或者使用strftime函数。。。
SQLite的strftime函数 - SQLite教程 - srcmini
select 订购日期,strftime('%Y-%m',订购日期) as 年月 from 订单
--------------------------------
select 订购日期,strftime('%Y-%m',订购日期) as 年月,substr(订购日期,1,7) as t from 订单
你用的帆软的数据库,就要用他们的函数,分割函数substring