Forgot Password,

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

You must login to ask a question.

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

databaseanswers.net Latest Questions

  • 0
Clara
Beginner

I have a table that has a character data type column which has varying date formats. 01/02/2022 1/2/2022 9/11/2022 10/2/2022 9/5/2022 12:00:00 AM When to_date(created_date,’mm/dd/yyyy’) is used, it fails with ORA-01830: date format picture ends before converting entire input string. When to_date(created_date,’mm/dd/yyyy hh:mi:ss PM’) is ...

  • 0
Clara
Beginner

This is my code: select datepart(year,fechaingreso) as ingreso, count(*) from empleados group by datepart(year,fechaingreso); And it gives me the following error: ORA-00904: "DATEPART": identificador no válido 00904. 00000 - "%s: invalid identifier" *Cause: *Action: Error en la línea: 132, columna: 12 What or where is the error in ...