Posts by MMelo31 • 21 points
3 posts
-
0
votes3
answers119
viewsA: Python: How to find the current date
From what I understand, you want to do something like: import datetime import calendar dataHoje = datetime.datetime.now() #define a data de hoje diaHoje = (calendar.day_name[dataHoje.weekday()])…
-
-1
votes1
answer28
viewsQ: JS - How to loop based on data from an array?
Good, I have the following JS array in my code: var Boletins = { id:1, items: [ { "#": "1", "Data": "19 a 25 de Março de 2021", "Região": "região de Trás-Os-Montes e Alto Douro", "Niveis": "muito…
-
2
votes1
answer28
viewsA: Select from SQL tables
No! SQL is recognizing its "2021-05-31" as a mathematical expression and not as a date. Try: select * from orcamento where status_orcamento = 'A' and data_conclusao_orcamento > Convert(datetime,…