본문 바로가기

반응형

DB(SQL)/mysql|maria

(43)
[mysql/maria] upsert (insert /update) upsert 라는 기능이 있습니다. (있으면 update 없으면 insert) 버전에 따라서 지원을 안할 경우 트리거를 이용하여 할수도 있으나 버전이 된다면 아래와 같은 명령어로 사용할 수 있습니다. (test해보지 않아 문법이 틀릴 수 있습니다. 자세한 사항은 Docs를 참조해주세요.) (버전에 따라 명령어가 실행되지 않을 수 있습니다. 적용되는 버전은 Docs를 참조해주세요.) t1 ---------------- a | b | c | ---------------- 1 | 2 | 3 | a unique key insert / update INSERT INTO t1 (a,b,c) VALUES (1,2,3) ON DUPLICATE KEY UPDATE c=c+1; or UPDATE t1 SET c=c+1 W..
[MariaDB ] Real MariaDB 인덱스 머지 http://www.gurubee.net/lecture/4197 인덱스 머지(INDEX MERGE) 5.8 인덱스 머지(index_merge) (MariaDB)(MySQL)인덱스를 이용하여 테이블을 읽는 경우 대부분은 하나의 인덱스만 활용할 수 있다.인덱스 머지 실행계.. www.gurubee.net
[MYSQL/MARIA] 복합 UNIQUE KEY와 NULLABLE Composite Unique key constraint with multiple null value in one of the column 예를들어 room_id와 camera_number를 복합 unique key로 설정하였다. 그리고 room_id는 nullable 하다. 그럴 경우 아래와 같이 했을 때 error가 날까? 결론 아니다. 왜? null 은 값이 아니라 비교가 불가능 하기 때문. 테이블 구성할때 이부분을 조심해야할것 같다. https://stackoverflow.com/questions/54287281/composite-unique-key-constraint-with-multiple-null-value-in-one-of-the-column Composite Unique key const..
[Mysql] ONLY_FULL_GROUP_BY (Maria DB) 본인 테스트 VERSION : 10.1.47-MariaDB-0ubuntu0.18.04.1 mysql 5.7 version 부터 sql_mode 추가된것에 대한 피드백이다. SQL-92 and earlier does not permit queries for which the select list, HAVING condition, or ORDER BY list refer to nonaggregated columns that are not named in the GROUP BY clause. For example, this query is illegal in standard SQL-92 because the nonaggregated name column in the select list does not app..
[Maria db] 데이터베이스 이력 쌓기 (query log) https://mariadb.com/kb/en/server-monitoring-logs/ Server Monitoring & Logs mariadb.com 1-1. DB 셋팅 확인 file # mysql cat /etc/my.cnf # mariadb # mariadb 는 /etc/mysql/mysql.cnf 도 같이 봐야한다. cat /etc/mysql/mariadb.conf.d/50-server.cnf 1-2. 셋팅 확인 (sql) -- mysql 접속 SHOW VARIABLES LIKE 'general_log'; # 기본 로그 저장 유무 SHOW VARIABLES LIKE 'general_log_file'; # 기본 로그 file 저장 경로 SHOW VARIABLES LIKE 'slow_query_l..
[MYSQL] performance-schema-statement-tables dev.mysql.com/doc/refman/5.6/en/performance-schema-statement-tables.html MySQL :: MySQL 5.6 Reference Manual :: 22.12.6 Performance Schema Statement Event Tables 22.12.6 Performance Schema Statement Event Tables The Performance Schema instruments statement execution. Statement events occur at a high level of the event hierarchy: Wait events nest within stage events, which nest within statement e..
[mariadb] 실행된 SQL 쿼리 이력 확인 (ubuntu) 1. 실행중인 쿼리 확인 (show full processlist) -- engine 상태 show engine innodb status; -- 현재 접속중인 유저 및 실행중인 쿼리 -- 기본 show full processlist; -- 상세 select * from INFORMATION_SCHEMA.PROCESSLIST; -- 해당 Thread 현황 select * from information_schema.INNODB_TRXG; -- 마지막에 해당 thread에서 실행중(된) 쿼리 조회 SELECT esc.THREAD_ID, t.processlist_id, esc.SQL_TEXT FROM performance_schema.events_statements_current esc /************..
[MYSQL] USER(사용자) 생성/권한 1. MYSQL 접속 mysql -u root -p 2. 현재 사용자(user) 확인 -- Tool에서 사용할때도 동일 하다. -- mysql database에 정보가 담겨져 있으므로 mysql database 선택 use mysql; -- mysql database 선택 select host, user, password from user; -- 조회 3. 사용자 추가 및 비밀번호 설정 -- user 생성 create user [user_name]; create user new_user; -- user 생성 및 password 설정 1 create user [user_name]@[host] identified by '[password]'; create user new_user@localhost ident..

반응형