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
Implementing bitwise operators is risky, here's why:
if we'd have bitwise operators | and &, the users may think (for a moment), we also have logical operators || and &&;
but we have the string concatenation operator ||, so it may lead to confusion.
Although MySQL and MS SQL Server have them, maybe it's worth doing.
Let's put this task on hold.
ec3bece132cc :) select 5 & 3 as result;
Syntax error: failed at position 10 ('&'):
select 5 & 3 as result;
Unrecognized token: '&'
No description provided.
The text was updated successfully, but these errors were encountered: