描述
我们要向 teachers 表中插入一条 Kansas 的信息,其年龄为 41 岁,国籍为 UK,请补充 SQL 语句,来实现插入 Kansas 的信息。
INSERT INTO teachers (name, email, age, country) VALUES ('Kansas', null, 41, 'UK');
这个知识点主要在注意email插入为null就可以了
描述
我们要向 teachers 表中插入一条 Kansas 的信息,其年龄为 41 岁,国籍为 UK,请补充 SQL 语句,来实现插入 Kansas 的信息。
INSERT INTO teachers (name, email, age, country) VALUES ('Kansas', null, 41, 'UK');
这个知识点主要在注意email插入为null就可以了