Last active
October 19, 2024 15:54
-
-
Save nikolasd/6c3df51f94bd0c537f593c6355d03c2e to your computer and use it in GitHub Desktop.
Ποιός είναι ο χρήστης δημιουργίας και αλλαγής ενός παραστατικού.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| heDocEntries.HEDOCCODE AS Document, | |
| crUser.POUSERNAME AS CreateUser, | |
| updUsers.POUSERNAME AS UpdateUser | |
| FROM heDocEntries | |
| LEFT JOIN heUsers crHUsers | |
| ON heDocEntries.HECREATIONUSRSID = crHUsers.HEUSERID | |
| LEFT JOIN poUsers crUser | |
| ON crHUsers.HEUSERID = crUser.POID | |
| LEFT JOIN heUsers updHUsers | |
| ON heDocEntries.HEUPDATEUSRSID = updHUsers.HEUSERID | |
| LEFT JOIN poUsers updUsers | |
| ON updHUsers.HEUSERID = updUsers.POID | |
| WHERE heDocEntries.HEDOCCODE = 'ΑΠΠΕ-AS-0000000004' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment