この記事では、ステートメントの追加の構文やデフォルト値、その他の関連問題など、Oracleステートメントの追加に関する関連知識を提供します。
#ステートメントの追加ステートメントを追加する構文:insert into 表名(列名列表) values(值列表);
学生テーブル
select * from studentInfo;
insert into studentInfo(studentId,stuName,sex,age,phone ,email,address) values(1,'张三','男',21,'32165498747','zhang@126.com','北京海淀');
insert into studentInfo(studentId,stuName,sex,age,phone ,email,address) values('张三',1,'男',21,'32165498747','zhang@126.com','北京海淀');--类型不一致错误
insert into studentInfo(studentId,stuName,sex,age,phone ,email,address) values(2,'张帅','女',21,'32165498745','zhang@126.com');--没有足够的值
insert into studentInfo(studentId,stuName,sex,age,phone ,email,address) values(2,'张帅','男',21,'32165498745','zhang@126.com','北京海淀','描述'); --值过多
insert into studentInfo(studentId,stuName,sex,age,phone ,email) values(2,'张帅','男',21,'32165498745','zhang@126.com');
insert into studentInfo(studentId,stuName,sex,age,phone ,email,address) values(9,'大山','男',22,null,'oracle@126.com',null);
insert into studentinfo(studentId,stuName,age,phone,address) values(10,'李林',21,'14785236956','北京西城');
insert into studentInfo(studentid,stuname,sex,age, phone,email,address) values(11,'蔡徐坤',default,20,'45632178954',default,null);
insert into studentinfo values(12,'邓伦',default,22,null,null,default);
Oracle」ビデオチュートリアル"
以上がOracle の add ステートメントを要約して整理する (要約の共有)の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。