Home > Enterprise >  What is <user>@<server> notation called?
What is <user>@<server> notation called?

Time:08-27

When connecting to a database or server, what is that particular kind of notation called?

CodePudding user response:

Account name syntax is 'user_name'@'host_name'.

It’s called account name syntax, at least in MySQL documentation.

  • Related