Hello World 從表
建立一個簡單的表
create table MY_table (
what varchar2(10),
who varchar2(10),
mark varchar2(10)
);
插入值(如果為所有列提供值,則可以省略目標列)
insert into my_table (what, who, mark) values ('Hello', 'world', '!' );
insert into my_table values ('Bye bye', 'ponies', '?' );
insert into my_table (what) values('Hey');
記得提交,因為 Oracle 使用事務
commit;
選擇你的資料:
select what, who, mark from my_table where what='Hello';