Posts by Gustavo S. Jardim • 31 points
3 posts
-
0
votes2
answers1007
viewsA: What is Ellipsis in Python?
Hi, I know the question is old, but I still think it is valid to add information. ... is used by the module pydantic to express attributes of a model as mandatory, but which can assume the value…
-
2
votes2
answers7796
viewsA: Use timestamp with or without Timezone in postgresql?
If you do not want take into consideration the Timezone you must use timestamp (timestamp without time zone). Otherwise, use timestampz (timestamp with time zone). Read more:…
-
1
votes4
answers97
viewsA: Create a SELECT to bring the difference of two tables
Hello, try this on: SELECT [ campos ] FROM bisemanas b LEFT JOIN outdoor_bisemanas o ON b.id_bisemanas = o.id_bisemanas WHERE o.id_bisemanas IS NULL Hug,…