Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Select Convert(VarChar(10), Convert(DateTime, YourColumnName), 101)
From YourTableName
Select *
From YourTableName
Where IsDate(YourColumnName) = 0
Select Convert(VarChar(10), Convert(DateTime, Case When IsDate(YourColumnName) = 1 Then YourColumnName Else NULL End), 101)
From YourTableName