Sqlalchemy convert epoch time to date in group by











up vote
0
down vote

favorite












I am using Sqlalchemy as ORM for PSQL db. My timestamps are stores as epoch times in my database eg, 1525868337991. (in milli sec)



I am writing a query to get count of employees on a particular date(grouping by on date). I am not able to find any way by which, I can convert epoch to date in my ORM query, like psql has to_timestamp. The query is written below :



employees_details = db.session.query(
func.count(EmployeeInfo.id).label("employee_count"), EmployeeInfo.employee_created_on, EmployeeSourceInfo.employee_source_display_name
).join(
EmployeeSourceInfo, EmployeeInfo.lead_source_id == EmployeeSourceInfo.id
).group_by(func.as_utc(EmployeeInfo.employee_created_on), EmployeeSourceInfo.employee_source_display_name).all()









share|improve this question









New contributor




rishabh-lok is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • Why don't you then just use the single argument form of to_timestamp()?
    – Ilja Everilä
    yesterday










  • @IljaEverilä I don't SqlAlchemy has to_timestamp() as its there psql. If its there, please let me know how to use it..
    – rishabh-lok
    yesterday










  • func in SQLAlchemy is generic. You can use it to generate pretty much any function expression necessary. func.xyzzy(1, 2) is just fine, if your database has such a function.
    – Ilja Everilä
    yesterday












  • @IljaEverilä Thanks, I am able to get but still I am not able to extract date from it.. Below is the query func.timezone('UTC',func.to_timestamp(EmployeeInfo.employee_created_on/1000)) I am dividing by 1000, as my timestamps are in milliseconds
    – rishabh-lok
    yesterday












  • Using the above query I am not able to perform group_by as date is returned as an instance of datetime like datetime.datetime(2018, 4, 9, 7, 34, 2, 744000)
    – rishabh-lok
    yesterday















up vote
0
down vote

favorite












I am using Sqlalchemy as ORM for PSQL db. My timestamps are stores as epoch times in my database eg, 1525868337991. (in milli sec)



I am writing a query to get count of employees on a particular date(grouping by on date). I am not able to find any way by which, I can convert epoch to date in my ORM query, like psql has to_timestamp. The query is written below :



employees_details = db.session.query(
func.count(EmployeeInfo.id).label("employee_count"), EmployeeInfo.employee_created_on, EmployeeSourceInfo.employee_source_display_name
).join(
EmployeeSourceInfo, EmployeeInfo.lead_source_id == EmployeeSourceInfo.id
).group_by(func.as_utc(EmployeeInfo.employee_created_on), EmployeeSourceInfo.employee_source_display_name).all()









share|improve this question









New contributor




rishabh-lok is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • Why don't you then just use the single argument form of to_timestamp()?
    – Ilja Everilä
    yesterday










  • @IljaEverilä I don't SqlAlchemy has to_timestamp() as its there psql. If its there, please let me know how to use it..
    – rishabh-lok
    yesterday










  • func in SQLAlchemy is generic. You can use it to generate pretty much any function expression necessary. func.xyzzy(1, 2) is just fine, if your database has such a function.
    – Ilja Everilä
    yesterday












  • @IljaEverilä Thanks, I am able to get but still I am not able to extract date from it.. Below is the query func.timezone('UTC',func.to_timestamp(EmployeeInfo.employee_created_on/1000)) I am dividing by 1000, as my timestamps are in milliseconds
    – rishabh-lok
    yesterday












  • Using the above query I am not able to perform group_by as date is returned as an instance of datetime like datetime.datetime(2018, 4, 9, 7, 34, 2, 744000)
    – rishabh-lok
    yesterday













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am using Sqlalchemy as ORM for PSQL db. My timestamps are stores as epoch times in my database eg, 1525868337991. (in milli sec)



I am writing a query to get count of employees on a particular date(grouping by on date). I am not able to find any way by which, I can convert epoch to date in my ORM query, like psql has to_timestamp. The query is written below :



employees_details = db.session.query(
func.count(EmployeeInfo.id).label("employee_count"), EmployeeInfo.employee_created_on, EmployeeSourceInfo.employee_source_display_name
).join(
EmployeeSourceInfo, EmployeeInfo.lead_source_id == EmployeeSourceInfo.id
).group_by(func.as_utc(EmployeeInfo.employee_created_on), EmployeeSourceInfo.employee_source_display_name).all()









share|improve this question









New contributor




rishabh-lok is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











I am using Sqlalchemy as ORM for PSQL db. My timestamps are stores as epoch times in my database eg, 1525868337991. (in milli sec)



I am writing a query to get count of employees on a particular date(grouping by on date). I am not able to find any way by which, I can convert epoch to date in my ORM query, like psql has to_timestamp. The query is written below :



employees_details = db.session.query(
func.count(EmployeeInfo.id).label("employee_count"), EmployeeInfo.employee_created_on, EmployeeSourceInfo.employee_source_display_name
).join(
EmployeeSourceInfo, EmployeeInfo.lead_source_id == EmployeeSourceInfo.id
).group_by(func.as_utc(EmployeeInfo.employee_created_on), EmployeeSourceInfo.employee_source_display_name).all()






python python-2.7 orm sqlalchemy flask-sqlalchemy






share|improve this question









New contributor




rishabh-lok is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




rishabh-lok is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited yesterday





















New contributor




rishabh-lok is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked yesterday









rishabh-lok

32




32




New contributor




rishabh-lok is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





rishabh-lok is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






rishabh-lok is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • Why don't you then just use the single argument form of to_timestamp()?
    – Ilja Everilä
    yesterday










  • @IljaEverilä I don't SqlAlchemy has to_timestamp() as its there psql. If its there, please let me know how to use it..
    – rishabh-lok
    yesterday










  • func in SQLAlchemy is generic. You can use it to generate pretty much any function expression necessary. func.xyzzy(1, 2) is just fine, if your database has such a function.
    – Ilja Everilä
    yesterday












  • @IljaEverilä Thanks, I am able to get but still I am not able to extract date from it.. Below is the query func.timezone('UTC',func.to_timestamp(EmployeeInfo.employee_created_on/1000)) I am dividing by 1000, as my timestamps are in milliseconds
    – rishabh-lok
    yesterday












  • Using the above query I am not able to perform group_by as date is returned as an instance of datetime like datetime.datetime(2018, 4, 9, 7, 34, 2, 744000)
    – rishabh-lok
    yesterday


















  • Why don't you then just use the single argument form of to_timestamp()?
    – Ilja Everilä
    yesterday










  • @IljaEverilä I don't SqlAlchemy has to_timestamp() as its there psql. If its there, please let me know how to use it..
    – rishabh-lok
    yesterday










  • func in SQLAlchemy is generic. You can use it to generate pretty much any function expression necessary. func.xyzzy(1, 2) is just fine, if your database has such a function.
    – Ilja Everilä
    yesterday












  • @IljaEverilä Thanks, I am able to get but still I am not able to extract date from it.. Below is the query func.timezone('UTC',func.to_timestamp(EmployeeInfo.employee_created_on/1000)) I am dividing by 1000, as my timestamps are in milliseconds
    – rishabh-lok
    yesterday












  • Using the above query I am not able to perform group_by as date is returned as an instance of datetime like datetime.datetime(2018, 4, 9, 7, 34, 2, 744000)
    – rishabh-lok
    yesterday
















Why don't you then just use the single argument form of to_timestamp()?
– Ilja Everilä
yesterday




Why don't you then just use the single argument form of to_timestamp()?
– Ilja Everilä
yesterday












@IljaEverilä I don't SqlAlchemy has to_timestamp() as its there psql. If its there, please let me know how to use it..
– rishabh-lok
yesterday




@IljaEverilä I don't SqlAlchemy has to_timestamp() as its there psql. If its there, please let me know how to use it..
– rishabh-lok
yesterday












func in SQLAlchemy is generic. You can use it to generate pretty much any function expression necessary. func.xyzzy(1, 2) is just fine, if your database has such a function.
– Ilja Everilä
yesterday






func in SQLAlchemy is generic. You can use it to generate pretty much any function expression necessary. func.xyzzy(1, 2) is just fine, if your database has such a function.
– Ilja Everilä
yesterday














@IljaEverilä Thanks, I am able to get but still I am not able to extract date from it.. Below is the query func.timezone('UTC',func.to_timestamp(EmployeeInfo.employee_created_on/1000)) I am dividing by 1000, as my timestamps are in milliseconds
– rishabh-lok
yesterday






@IljaEverilä Thanks, I am able to get but still I am not able to extract date from it.. Below is the query func.timezone('UTC',func.to_timestamp(EmployeeInfo.employee_created_on/1000)) I am dividing by 1000, as my timestamps are in milliseconds
– rishabh-lok
yesterday














Using the above query I am not able to perform group_by as date is returned as an instance of datetime like datetime.datetime(2018, 4, 9, 7, 34, 2, 744000)
– rishabh-lok
yesterday




Using the above query I am not able to perform group_by as date is returned as an instance of datetime like datetime.datetime(2018, 4, 9, 7, 34, 2, 744000)
– rishabh-lok
yesterday












1 Answer
1






active

oldest

votes

















up vote
1
down vote













The func in SQLAlchemy is generic and can be used to produce almost any SQL function expression. With this in mind you can simply replace func.as_utc with



func.to_timestamp(EmployeeInfo.employee_created_on / 1000.0)


To then truncate it to a date either cast it as one:



from sqlalchemy import Date

func.to_timestamp(EmployeeInfo.employee_created_on / 1000.0).cast(Date)


or use the Postgresql specific function date_trunc() to reduce the resulting timestamp to day precision:



func.date_trunc('day', func.to_timestamp(EmployeeInfo.employee_created_on / 1000.0))





share|improve this answer





















  • The former approach to cast dates is a good approach, but it returns date as an instance of datetime class. datetime.date(2018, 4, 9) . Is there any way to convert them to exact date in query itself ? Without that I have to run a loop and convert each date into isoformat
    – rishabh-lok
    6 hours ago













Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});






rishabh-lok is a new contributor. Be nice, and check out our Code of Conduct.










 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53371655%2fsqlalchemy-convert-epoch-time-to-date-in-group-by%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
1
down vote













The func in SQLAlchemy is generic and can be used to produce almost any SQL function expression. With this in mind you can simply replace func.as_utc with



func.to_timestamp(EmployeeInfo.employee_created_on / 1000.0)


To then truncate it to a date either cast it as one:



from sqlalchemy import Date

func.to_timestamp(EmployeeInfo.employee_created_on / 1000.0).cast(Date)


or use the Postgresql specific function date_trunc() to reduce the resulting timestamp to day precision:



func.date_trunc('day', func.to_timestamp(EmployeeInfo.employee_created_on / 1000.0))





share|improve this answer





















  • The former approach to cast dates is a good approach, but it returns date as an instance of datetime class. datetime.date(2018, 4, 9) . Is there any way to convert them to exact date in query itself ? Without that I have to run a loop and convert each date into isoformat
    – rishabh-lok
    6 hours ago

















up vote
1
down vote













The func in SQLAlchemy is generic and can be used to produce almost any SQL function expression. With this in mind you can simply replace func.as_utc with



func.to_timestamp(EmployeeInfo.employee_created_on / 1000.0)


To then truncate it to a date either cast it as one:



from sqlalchemy import Date

func.to_timestamp(EmployeeInfo.employee_created_on / 1000.0).cast(Date)


or use the Postgresql specific function date_trunc() to reduce the resulting timestamp to day precision:



func.date_trunc('day', func.to_timestamp(EmployeeInfo.employee_created_on / 1000.0))





share|improve this answer





















  • The former approach to cast dates is a good approach, but it returns date as an instance of datetime class. datetime.date(2018, 4, 9) . Is there any way to convert them to exact date in query itself ? Without that I have to run a loop and convert each date into isoformat
    – rishabh-lok
    6 hours ago















up vote
1
down vote










up vote
1
down vote









The func in SQLAlchemy is generic and can be used to produce almost any SQL function expression. With this in mind you can simply replace func.as_utc with



func.to_timestamp(EmployeeInfo.employee_created_on / 1000.0)


To then truncate it to a date either cast it as one:



from sqlalchemy import Date

func.to_timestamp(EmployeeInfo.employee_created_on / 1000.0).cast(Date)


or use the Postgresql specific function date_trunc() to reduce the resulting timestamp to day precision:



func.date_trunc('day', func.to_timestamp(EmployeeInfo.employee_created_on / 1000.0))





share|improve this answer












The func in SQLAlchemy is generic and can be used to produce almost any SQL function expression. With this in mind you can simply replace func.as_utc with



func.to_timestamp(EmployeeInfo.employee_created_on / 1000.0)


To then truncate it to a date either cast it as one:



from sqlalchemy import Date

func.to_timestamp(EmployeeInfo.employee_created_on / 1000.0).cast(Date)


or use the Postgresql specific function date_trunc() to reduce the resulting timestamp to day precision:



func.date_trunc('day', func.to_timestamp(EmployeeInfo.employee_created_on / 1000.0))






share|improve this answer












share|improve this answer



share|improve this answer










answered 23 hours ago









Ilja Everilä

22.4k33459




22.4k33459












  • The former approach to cast dates is a good approach, but it returns date as an instance of datetime class. datetime.date(2018, 4, 9) . Is there any way to convert them to exact date in query itself ? Without that I have to run a loop and convert each date into isoformat
    – rishabh-lok
    6 hours ago




















  • The former approach to cast dates is a good approach, but it returns date as an instance of datetime class. datetime.date(2018, 4, 9) . Is there any way to convert them to exact date in query itself ? Without that I have to run a loop and convert each date into isoformat
    – rishabh-lok
    6 hours ago


















The former approach to cast dates is a good approach, but it returns date as an instance of datetime class. datetime.date(2018, 4, 9) . Is there any way to convert them to exact date in query itself ? Without that I have to run a loop and convert each date into isoformat
– rishabh-lok
6 hours ago






The former approach to cast dates is a good approach, but it returns date as an instance of datetime class. datetime.date(2018, 4, 9) . Is there any way to convert them to exact date in query itself ? Without that I have to run a loop and convert each date into isoformat
– rishabh-lok
6 hours ago












rishabh-lok is a new contributor. Be nice, and check out our Code of Conduct.










 

draft saved


draft discarded


















rishabh-lok is a new contributor. Be nice, and check out our Code of Conduct.













rishabh-lok is a new contributor. Be nice, and check out our Code of Conduct.












rishabh-lok is a new contributor. Be nice, and check out our Code of Conduct.















 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53371655%2fsqlalchemy-convert-epoch-time-to-date-in-group-by%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

Does disintegrating a polymorphed enemy still kill it after the 2018 errata?

A Topological Invariant for $pi_3(U(n))$