當前位置:首頁 » 編程語言 » oracle的sql練習題

oracle的sql練習題

發布時間: 2024-11-23 10:28:37

A. oracle練習。用SQL語句建表

(1)
create table customer(
"客戶編號" number(8),
"客戶名稱" varchar2(40),
"客戶電話" varchar2(20)
);
(2)
insert into customer values(1,'客戶1','13900000001');
insert into customer values(2,'客戶2','13900000002');
insert into customer values(3,'客戶3','13900000003');
insert into customer values(4,'客戶4','13900000004');
insert into customer values(5,'客戶5','13900000005');
insert into customer values(6,'客戶6','13900000006');
insert into customer values(7,'客戶7','13900000007');
insert into customer values(8,'客戶8','13900000008');
insert into customer values(9,'客戶9','13900000009');
insert into customer values(10,'客戶10','13900000010');
(3)
select * from customer where rownum>=4 and rownum<=6;

B. Oracle嵌套表問題 PL/SQL

1.create table(PName varchar(20))
select distinct PName from Patient;

2.create table
select * from Patient

然後對Patient增加兩個trigger
1.if(:New.DName not in Patient) insert 嵌套表1
2.on update insert ,insert 嵌套表2

熱點內容
我的世界正版小游戲伺服器電腦版 發布:2025-10-14 02:33:44 瀏覽:327
哪些資料庫是免費的 發布:2025-10-14 02:05:40 瀏覽:722
php遠程oracle 發布:2025-10-14 01:49:49 瀏覽:577
linux獲取ipc 發布:2025-10-14 01:40:54 瀏覽:664
蘋果復雜密碼怎麼設置 發布:2025-10-14 01:29:54 瀏覽:965
csgo顯示伺服器ip的代碼 發布:2025-10-14 00:25:06 瀏覽:138
安卓手機沒網路還有流量怎麼回事 發布:2025-10-14 00:04:24 瀏覽:149
網頁特效源碼 發布:2025-10-13 23:59:11 瀏覽:848
編譯github 發布:2025-10-13 23:41:30 瀏覽:159
編程貓扣子 發布:2025-10-13 23:41:24 瀏覽:363