我有一个名为IAT的数据文件:
dados = [["2019-10",20.59,"Glosa de 5%"],["2019-10",47.37,"Glosa de 5%"],["2019-10",78.12,"Glosa de 5%"],["2019-10",10,"Glosa de 5%"],["2019-11",15,"Glos
Sample数据2019-10;New York City;women;AL;52019-10;New York City;men;AL;32019-12;New York City;men;AL;5
2019-"2019-10“月的示例数据显示了我所需要的数据的正确出现:一年中每个月4行,女性2行,具有
07/11/2019-10:18:01:: i INFO: Schedule 3d1ac939-3fb6-4313-9e04-bce6353a6825 executed at 07/11/2019 1007/11/2019-10:18:01:: Creating Time based subscription notification for subscription: a9d6e90a-84fc-439d-b71507/11/2019-10:18:01:: i
我想在SQL查询中使用缩短的日期格式,例如:当然,现在它会导致错误:
SQL Error [22007我知道我可以把我的字符串与to_date('2019-10','YYYY-MM')约会。我的问题是如何使我的查询看起来像:SELECT * FROM my_table where date_column='2019-10'。没有任何铸造和转换。