SQL GetDate Fecha solamente

-- MS SQL Server
SELECT CAST(getdate() AS date);
SELECT CAST(getdate() AS varchar(10));
VasteMonde