How do you get the machine name of the current computer in MySQL?
e.g. KevinPC.
In MSSQL, I could use:
to get a string representing the name of the current computer but this does not work in MySQL.Code:CONVERT(varchar(200), SERVERPROPERTY('MachineName'))


Reply With Quote