You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val codinatorSQL = sqls.eq(cod.createdDate, DateTime.now().toString("yyyy-MM-dd"))
Im generating a sqlsyntax and pass over error show Retriving Group Failed.com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Column 'created_date' in where clause is ambiguous
But if i use it direct at model
.eq(cod.createdDate, DateTime.now().toString("yyyy-MM-dd"))
.append(sqls"${where}")
cod.createdDate are working fine with definer cod.*
The text was updated successfully, but these errors were encountered:
val codinatorSQL = sqls.eq(cod.createdDate, DateTime.now().toString("yyyy-MM-dd"))
Im generating a sqlsyntax and pass over error show Retriving Group Failed.com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Column 'created_date' in where clause is ambiguous
But if i use it direct at model
.eq(cod.createdDate, DateTime.now().toString("yyyy-MM-dd"))
.append(sqls"${where}")
cod.createdDate are working fine with definer cod.*
The text was updated successfully, but these errors were encountered: