일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 |
- xargs
- netsh
- vscode
- 줄바꿈 문자
- ssh
- Windows 10
- profile
- bash
- IntelliJ
- resource
- tomcat
- 단축키
- GIT
- Quartz
- maVen
- find
- context
- import
- Eclipse
- Source
- 네트워크
- grep
- Windows
- web.xml
- VirtualBox
- lsof
- port
- JavaScript
- Mac
- plugin
- Today
- Total
목록2024/02/14 (3)
develog
-- FK 등록 alter table tb_member_person add constraint fk_member_seq foreign key(member_seq) references tb_member(member_seq) ; -- FK 삭제 alter table tb_member_person drop foreign key fk_member_seq ;
테이블 코멘트 조회/수정 -- 테이블 코멘트 조회 select table_schema, table_name, table_comment from information_schema.tables where table_schema = 'my_db' order by table_schema, table_name ; -- 테이블 코멘트 수정 alter table tb_member comment '회원정보'; 컬럼 코멘트 조회/수정 -- 컬럼 코멘트 조회 select table_schema, table_name, column_name, column_comment from information_schema.columns where table_schema = 'my_db' order by table_schema, tabl..
팝업창 코드 - form 의 target 을 opener.window.name 로 설정 function doPost(url, param, target) { var form = document.createElement('form'); for (var key in param){ var value = param[key]; var obj = document.createElement('input'); obj.setAttribute('type', 'hidden'); obj.setAttribute('name', key); obj.setAttribute('value', value); form.appendChild(obj); } if (target) { form.setAttribute('target', target); ..