工作心得 有關主鍵索引

2022-03-23 09:23:02 字數 1802 閱讀 1556

oracle中新增刪除主鍵

1、建立表的同時建立主鍵約束

(1)無命名

create table student (

studentid int primary key not null,

studentname varchar(8),

age int);

(2)有命名

create table students (

studentid int ,

studentname varchar(8),

age int,

constraint yy primary key(studentid));

2、刪除表中已有的主鍵約束

(1)有命名

alter table students drop constraint yy;

(2)無命名

可用 select   *   from   user_cons_columns;

查詢表中主鍵名稱得student表中的主鍵名為sys_c002715

alter table student drop constraint sys_c002715;

3、向表中新增主鍵約束

alter table student add constraint pk_student primary key(studentid); 

**:1、查詢表的所有索引(包括索引名,型別,構成列):

select t.*,i.index_type from user_ind_columns t,user_indexes i where t.index_name = i.index_name and t.table_name = i.table_name and t.table_name = 要查詢的表

2、查詢表的主鍵(包括名稱,構成列):

select cu.* from user_cons_columns cu, user_constraints au where cu.constraint_name = au.constraint_name and au.constraint_type = 'p' and au.table_name = 要查詢的表

3、查詢表的唯一性約束(包括名稱,構成列):

select column_name from user_cons_columns cu, user_constraints au where cu.constraint_name = au.constraint_name and au.constraint_type = 'u' and au.table_name = 要查詢的表

4、查詢表的外來鍵(包括名稱,引用表的表名和對應的鍵名,下面是分成多步查詢):

select * from user_constraints c where c.constraint_type = 'r' and c.table_name = 要查詢的表

查詢外來鍵約束的列名:

select * from user_cons_columns cl where cl.constraint_name = 外來鍵名稱

查詢引用表的鍵的列名:

select * from user_cons_columns cl where cl.constraint_name = 外來鍵引用表的鍵名

5、查詢表的所有列及其屬性

select t.*,c.comments from user_tab_columns t,user_col_comments c where t.table_name = c.table_name and t.column_name = c.column_name and t.table_name = 要查詢的表

**:

關於DEVExpress的使用心得,有關列印操作!

在用這個第三方外掛程式做報表時,總結了幾個問題!在做類似 的報表時,先用了printcontrol控制項,因為有幾級標題,用pageheaderfooter類進行表頭宣告可以解決,換行也可以用字串中加 r n來解決 科室要解決幾級標題的不同字型,就不好搞了!因此我換了,layoutcontrol控制...

資料庫oracle學習心得有關於多表查詢

資料庫oracle學習心得有關於多表查詢 資料庫中的多表查詢分為兩種 內連線和外連線 內連線與外連線的區別 就是外連線比內連線多了乙個left或者right 查詢結構 下面詳細講講有關於內連線與外連線 內連線 查詢的結構 select 表1.表1的屬性,表2.表2的屬性 from 表1 join 表...

DOTCPP 有關1050心得

思路 小貼士現有有n個學生的資料記錄,每個記錄包括學號 姓名 三科成績。編寫乙個函式input,用來輸入乙個學生的資料記錄。編寫乙個函式print,列印乙個學生的資料記錄。在主函式呼叫這兩個函式,讀取n條記錄輸入,再按要求輸出。n 100 學生數量n佔一行 每個學生的學號 姓名 三科成績佔一行,空格...