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
For MySQL nulls_last_sql should be set to -%s %s according the docs, but that only works with numeric values. I'd like to use the solution for varchar values: ISNULL(field), field ASC but that requires the column name 2 times which isn't possible with sprintf(); ISNULL(%s), %s %s. It results in: sprintf(): Too few arguments
The text was updated successfully, but these errors were encountered:
For MySQL
nulls_last_sql
should be set to-%s %s
according the docs, but that only works with numeric values. I'd like to use the solution for varchar values:ISNULL(field), field ASC
but that requires the column name 2 times which isn't possible withsprintf()
;ISNULL(%s), %s %s
. It results in:sprintf(): Too few arguments
The text was updated successfully, but these errors were encountered: