MSSQL Server – Extract date dd/mm/yyyy part from datetime
MSSQL Server don't have a like operator. Like operator is really helpful to do the pattern matching on a column data especially when the column has a datetime part. It is a common requirement among the developers to extract the date part from the datetime column in the database for some logic flow. It was very easy to run that in MySQL ...
