Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
It’s not C record but CNAME record.
You should have:
DNS type A record for main site mydomain.net with DNS value of your Droplet IP
mydomain.net with DNS value of mydomain.net or mydomain.net. ( some provides need . at the end of the CNAME value ).This set DNS for main domain to Droplet IP and everything else to main domain.
So mydomain.net has IP 1.2.3.4 ,
www.mydomain.net return mydomain.net and that return 1.2.3.4.,
test.mydomain.net return mydomain.net and that return 1.2.3.4..
But if you want to redirect all site users from all sudomains to main domain, you must redirect this with webserver ( Nginx / Apache2 / … ). DNS is one step, redirect via webserver is another step.