Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- create table tmp.zdroj
- (
- id_zdroj int identity(1,1) primary key,
- id_cestovne int,
- id_majetek int,
- foreign key(id_cestovne) references tmp.cestovne (id_cestovne),
- foreign key(id_majetek) references tmp.majetek (id_majetek)
- )
- go
- insert into tmp.zdroj (id_zroj, id_cestovne, id_majetek)
- values ('1', '2', '3')
Advertisement
Add Comment
Please, Sign In to add comment