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
SELECT * FROM [Decisions] WHERE [Title] LIKE ? AND (([Motivation] IS NULL OR [IsBoss] = ?) or P = ?) works fine
But SELECT * FROM [Decisions] WHERE [Title] LIKE ? AND ( ([Motivation] IS NULL OR [IsBoss] = ?) or P = ?)
does not (See the SPACE character in the Motivation parenthesises.
The text was updated successfully, but these errors were encountered:
SELECT * FROM [Decisions] WHERE [Title] LIKE ? AND (([Motivation] IS NULL OR [IsBoss] = ?) or P = ?)
works fineBut
SELECT * FROM [Decisions] WHERE [Title] LIKE ? AND ( ([Motivation] IS NULL OR [IsBoss] = ?) or P = ?)
does not (See the SPACE character in the Motivation parenthesises.
The text was updated successfully, but these errors were encountered: