SELECT
to_char("date", 'YYYY/MM/DD')
"public".teacher_details.teacher_id,
"public".teacher_details.first_name,
"public"."TblFacultyMaster"."MastCode",
"public"."TblFacultyMaster"."MastName",
"public"."TblFacultyMaster"."DOB",
"public".teacher_details.dob
FROM
"public".teacher_details
INNER JOIN "public"."TblFacultyMaster" ON "public"."TblFacultyMaster".teacher_id = "public".teacher_details.teacher_id
I am trying to convert date format from dd/mm/yyyy to yyyy-mm-dd and the type is varchar , since I have yyyy-mm-dd in format in my TblFacultyMaster table and dd/mm/yyyy in my teachers_deatil table
I want to match common DOB but the format is different in both table
Help Please
Thanks In advance
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…