USER( )This MySQL function returns the user name and the hostname for the current MySQL connection. The function takes no arguments. It's synonymous with SESSION_USER( ) and SYSTEM_USER( ).SyntaxExplanationThis function returns the user name and the hostname for the current MySQL connection. The function takes no arguments. It's synonymous with SESSION_USER( ) and SYSTEM_USER( ). ExamplesSELECT USER( ); +-------------------+ | USER( ) | +-------------------+ | vita@localhost | +-------------------+ |

