Click here to Skip to main content
15,913,758 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
my query as follows;



select * FROM Tb_SCh_TIme_Table P PIVOT
(MAX(Faculty_Code) FOR Session IN ([1],[2],[3] ,[4])) AS PVT order by course.


when i run output as follows in sql;

Date course session1 session2 session3 session4

2013-01-15 00:00:00.000 Aff CK Vb RC SJ

i want the date format as follows in sql ouput;

Date course session1 session2 session3 session4

15-jan-2013 Aff CK Vb RC SJ

how can i do.what modification is needed in my above query,how can i do.
Posted

1 solution

See here[^] for all options
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900