We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
\N
MySQL:
mysql> select \N; +------+ | NULL | +------+ | NULL | +------+ 1 row in set, 1 warning (0.00 sec)
TiDB:
mysql> select \N; ERROR 1105 (HY000): line 0 column 8 near "N" (total length 9)
The text was updated successfully, but these errors were encountered:
Treatment of \N as a synonym for NULL in SQL statements is deprecated as of MySQL 5.7.18 and is removed in MySQL 8.0
Sorry, something went wrong.
DeleteStmt
No branches or pull requests
MySQL:
mysql> select \N;
+------+
| NULL |
+------+
| NULL |
+------+
1 row in set, 1 warning (0.00 sec)
TiDB:
mysql> select \N;
ERROR 1105 (HY000): line 0 column 8 near "N" (total length 9)
The text was updated successfully, but these errors were encountered: