090429
create table board ( sn int primary key, title nvarchar(50) ) create table contents ( fk_board int foreign key references board(sn), part_sn int primary key, title nvarchar(50) ) set concat_null_yields_null off --sql기본값은 null + data 을 해도 null이 나온다. --옵션을 걸어서 null + data를 하면 data가 나오도록 한다. --세션명령이므로 해당 명령구문에서만 적용된다. -- sql의 기본은 on으로 되어 있다. update contents set --title은 대상이 되는 contents 테이블에 대한것이기 때..
청강컴정/DataBase
2009. 4. 29. 13:49