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
例如以下语句:
ALTER TABLE t_delivery_area
ADD COLUMN is_hidden BIT DEFAULT 0 NOT NULL COMMENT '******';
其中 BIT DEFAULT 0是错误的写法,正确的写法是 BIT DEFAULT b'0'
如何添加语法检测,来对这种错误写法进行识别检测?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
例如以下语句:
ALTER TABLE t_delivery_area
ADD COLUMN is_hidden BIT DEFAULT 0 NOT NULL COMMENT '******';
其中 BIT DEFAULT 0是错误的写法,正确的写法是 BIT DEFAULT b'0'
如何添加语法检测,来对这种错误写法进行识别检测?
Beta Was this translation helpful? Give feedback.
All reactions