SQL Tutorial

SQL System Values are reserved names used to access builtin values: USER -- returns a string with the current SQL authorization identifier. CURRENT_USER -- same as USER. SESSION_USER -- returns a string with the current SQL session authorization identifier. SYSTEM_USER -- returns a string with the current operating system user. ................
................