기본 콘텐츠로 건너뛰기

MSSQL 칼럼 삭제 ( delete column in sql server )

ALTER TABLE 테이블명 DROP COLUMN 컬럼명

댓글

이 블로그의 인기 게시물

div 양분하기 (Two Column Layout)

float:left를 활용한 div 둘로 나누기 [html]     <div class="content_wrap">            <div class="content-list">List</div>            <div class="content-view">View</div>      </div> [css] .content_wrap {     position:relative;     width:100%; } .content-list {     width: 40%;     height:500px;     float:left;     background-color:yellow } .content-view {     width: 60%;     height: 500px;     float: left;     background-color: beige }