A lot of times we come across issues when our disk space is consumed and we need to move our database MDF & LDF files from their default location. In an earlier version of SQL Server, you have to use Detach and Attach...
Category - Sql
A lot of times we come across issues comparing dates in SQL. There are a few scenarios below Compare dates in the DateTime Column Select * from EMP WHERE datetime_column >= '20221220 00:00:00.000' AND datetime_column...