KunlunBase对MySQL私有DML语法的支持
前言
为了让MySQL的应用更为便捷地迁移到 KunlunBase ,我们做了很多兼容MySQL的工作。
本篇章主要介绍 KunlunBase 现在已经支持的MySQL常用的私有DML语法,以及这些语法与原生MySQL的差异。
一、兼容MySQL的insert ignore语法
功能: 忽略违背约束的新元组。
示例:
postgres -> create table t1(a int primary key, b int not null unique);
CREATE TABLE
# 违背约束,不进行插入
postgres -> insert ignore into t1(a,b) values (4,4);
INSERT 1
postgres -> insert ignore into t1(a,b) values (4,4);
INSERT
相关文章