문서 | 날짜 | 사용자 | 설명 |
---|---|---|---|
2022/05/18 09:35 | 주레피 | Functions & Procedures For Mysql, Mariadb * description : 마리아DB, Mysql 유용한 사용자 정의 함수 모음 * author : 주레피 * email : dhan@repia.com * lastupdate : 2022-05-18 Case Study HTML 제거 SET GLOBAL log_bin_trust_function_creators=1; DROP FUNCTION IF EXISTS fnStripTags; DELIMITER | CREATE FUNCTION fnStripTags( Dirty varchar(4000) ) RETURNS varchar(4000) DETERMINISTIC BEGIN DECLARE iStart, iEnd, iLength int; WHILE Locate( '<', Dirty ) > 0 And Locate( '>', Dirty, Locate( '<', Dir… | |
2020/02/08 12:59 | 주레피 | Mysql / MariaDB * description : MariaDB, Mysql 관련 자료 정리 * author : 주레피 * email : dhan@repia.com * lastupdate : 2020-02-08 주의 사항 * 대소문자 주의하는 것에 대해 고민하자 FAQ * 사용자 패스워드 변경하기 | |
2022/11/30 14:16 | 오션 | MySQL INSERT_SELECT_Statement * description : MySQL INSERT_SELECT_Statement * author : 오션 * email : shlim@repia.com * lastupdate : 2022-11-30 Wed MySQL 5.6 Reference Manual INSERT Statement INSERT ...SELECT Statement |