You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
Hi,
i am having trouble trying to figure this out. I have a
table something as below. i want to write an sqlalchemy that query the
table and then display the email address from the row that was last
updated. Please point me to the right direction to help me accomplished
that.
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django users
On 16/06/2017 12:01 PM, sum abiut wrote:
>
>
> Hi,
> i am having trouble trying to figure this out. I have a table
> something as below. i want to write an sqlalchemy that query the table
> and then display the email address from the row that was last
> updated. Please point me to the right direction to help me
> accomplished that.
>
>
>
>
>
> fname lname email phone
You will need an extra field of type models.DateTimeField(auto_now=True)
which gets automatically updated every time the record (model) is saved
if something has changed.