SQL Select All and change the format of one column
It should let you do that, as long as you name the column something different:
Select *, CONVERT(varchar(100),courseStartDate,111) as myConvertedDateColumn
from EthicsManagement
It should let you do that, as long as you name the column something different:
Select *, CONVERT(varchar(100),courseStartDate,111) as myConvertedDateColumn
from EthicsManagement