일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 30 | 31 |
- ajax 동기방식처리
- 접속ip
- mysql trigger
- mysql
- 서브쿼리
- map api v3
- http https
- eclipse hotdeploy
- 한국소프트웨어산업협회
- 아이폰키보드
- ant path pattern
- TM128
- String[]
- 2개 테이블
- checkbox 값처리
- extundelete
- partition by
- multipart
- remote ip
- KOSA
- group by max
- 폐업자에 대한 업종등의 정보내역
- Oracle
- 컴퓨터 드라이버
- update
- ajax async
- 첫주 및 마지막주 날짜 전체 포함
- String 배열
- jquery selectbox change
- 주소 좌표변환
- Today
- Total
목록가벼운 배움/MySql (14)
하은양 믿음군 효실맘 호홍홍집s
함수만들기 : http://sourcenote.tistory.com/99 delimiter $$ DROP FUNCTION IF EXISTS localtax.FUN_INTDF$$ CREATE FUNCTION localtax.FUN_INTDF(vGubun VARCHAR(10), vYear SMALLINT, vQuarter TINYINT, vBank VARCHAR(50), vBizgubun VARCHAR(1)) RETURNS BIGINT(20) unsigned BEGIN DECLARE vRtn BIGINT(20) unsigned; set vRtn = 0; if vGubun '' and vYear > 0 and vQuarter > 0 and vBank '' then if vGubun = 'CNT' then SE..
참조 : http://blog.beany.co.kr/archives/495 함수 만들기시에 아래와 같은 에러 발생시 조치는 위의 URL 참조!! ERROR 1418 (HY000): This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable MySQL 의 관리자로 접속합니다. mysql -uroot -p mysql 시스템 변수 log_bin_trust_function_creators 를 확인합니다. mysql> show..
use mysql; insert into user (host,user,password) values ('localhost','user_id',password('user_pwd')); flush privileges; create database database_name; grant all privileges on database_name.* to user_id@localhost; flush privileges; -- 모든 영역에서 접근가능토록처리... insert into user (host,user,password) values ('%','user_id',password('user_pwd')); flush privileges; grant all privileges on database_name.* to ..