Posts by Rodrigo Saito • 88 points
3 posts
-
1
votes1
answer85
viewsQ: How to declare and use methods that are in the same class
Good afternoon. I would like to know how the declaration is made and the use of methods within the same class. For example, in one class there are 2 methods, which 1 method uses the other. For…
pythonasked Rodrigo Saito 88 -
4
votes1
answer181
viewsQ: Function to return the proper python source code name
Is there a function to return the source file name itself? The intention would be to create a log file, which one of the data would have the name of the source that is generating that log. If you…
pythonasked Rodrigo Saito 88 -
1
votes1
answer80
viewsA: Select data from last database file and select file data from time before last. Compare Data
Following example below using SQL Server 2008 R2, based on microsoft’s official website: WITH TABELA AS ( SELECT DISTINCT HireDate FROM [AdventureWorks2008R2].[HumanResources].[Employee] ) SELECT…