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


SELECT S.Marks,S.QPName,B.Class,B.BthNo,B.Batchdate,B.Attender
FROM STUDDET S,Batch B where S.BthId = B.BthId and S.StudId = '252'

when i execute the above query ouput as follows;

Marks QPName Class BthNo Batchdate Attender

56 REO MFA B12 2011-09-26 00:00:00.000 NIRANJAN


But i want the output as follows;


Marks QPName Class BthNo Batchdate Attender

56 REO MFA B12 26-09-2011 NIRANJAN


i want to format the BatchDate in the format of DD-MM-YYYY.

for that how can i using sql server.

Please help me.

Regards,
Narasiman P.
Posted

This should do it.
SQL
SELECT Marks, QPName, Class, BthNo, CONVERT(DATETIME, Batchdate, 105) AS Batchdate, Attender
FROM STUDDET S,Batch B where S.BthId = B.BthId and S.StudId = '252'
Basically, we are converting the date into Italian format (105) with the century specified. If you didn't want the century in there, you'd just use 5 instead.
 
Share this answer
 
Hi,
Please try this..
SQL
SELECT S.Marks,S.QPName,B.Class,B.BthNo,CONVERT(VARCHAR(10), B.Batchdate, 105) AS B.Batchdate,B.Attender
FROM STUDDET S,Batch B where S.BthId = B.BthId and S.StudId = '252'
 
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