Cách lấy phần thập phân sau dấu phẩy trong SQL tháng 12 21, 2020 select x, ABS(x) - FLOOR(ABS(x)) from ( select 2.938 as x ) a Read more »
Xóa bin và obj trong folder Project tháng 12 07, 2020 Bạn mở PowerShell, bạn dòng code sau: Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse } Read more »