Search Result

Collapse
2 results in 0.0039 seconds.
Keywords
Members
Tags
foreign keys
  •  

  • minorcoder
    started a topic Problem in on delete no action why?

    Problem in on delete no action why?

    while i am trying to execute the following query it shows error. i need to create such type relation between 3 table. here i am showing example. this also show error.
    Code:
    create table tbl1(
    	id1	number primary key,
    	name1	varchar2(10)
    );
    
    create table tbl2(
    	id2	number,
    	name2	varchar2(10) primary key);
    
    create table tbl3(
    	id3	number,
    	name3	varchar2(10),
    ...
    See more | Go to post

  • mp01
    started a topic displaying a table with PK first then FK?

    displaying a table with PK first then FK?

    Is there a way to create a table that displays tables in order of table with PK first then tables with FK?
    See more | Go to post
Working...