标签:into student tab insert bbb varchar2 int table var
create table STUDENT ( id INTEGER, name VARCHAR2(100) , age INTEGER ); insert into student (id, name, age) values (1, ‘aaa‘, 18); insert into student (id, name, age) values (2, ‘bbb‘, 27); insert into student (id, name, age) values (3, ‘ccc‘, 35);
标签:into student tab insert bbb varchar2 int table var
原文地址:http://www.cnblogs.com/bobo1713930654/p/7478549.html