Created
November 4, 2013 14:39
-
-
Save siliconmeadow/7303417 to your computer and use it in GitHub Desktop.
To find domain names and hosting types by client in Plesk.
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 domains.name, domains.htype, clients.cname | |
FROM domains, clients | |
WHERE clients.id = domains.cl_id | |
AND clients.id = <(an integer)> | |
ORDER BY domains.htype ASC; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment