차근차근
Every derived table must have its own alias 에러참조 : http://ohhooh.tistory.com/18 서브쿼리 사용시 서브쿼리에 이름이 없을 떄 나는 에러 HY000You can't specify target table 에러참조 : https://www.lesstif.com/display/DBMS/MySQL+Error+1093+%3A+You+can%27t+specify+target+table+%27cwd_group%27+for+update+in+FROM+clause update,delete시 자기테이블 바로 참조 불가능 서브쿼리 만들어서 사용
참조 : http://www.talkdev.net/mariadb-%EC%9B%90%EA%B2%A9-%EC%A0%91%EC%86%8D-%ED%97%88%EC%9A%A9/ 에러 내용Host 'xxx.xxx.xxx.xxx' is not allowed to connect to this MariaDB server # 데이터베이스 생성MariaDB [(none)]> create database {데이터베이스명};Query OK, 1 row affected (0.00 sec) # 사용자 등록MariaDB [(none)]> insert into user (host, user, password) values('%', '{아이디}', password('{패스워드}'));Query OK, 0 rows affected (0...
참조 : http://failsetting.blogspot.kr/2016/11/centos7-yum-mariadb.html https://zetawiki.com/wiki/CentOS7_MariaDB_%EC%84%A4%EC%B9%98 mysql 로컬 실행시 에러 mariaDB server설치error 2002 (hy000): can't connect to local mysql server through socket '/var/lib/mysql/mysql.sock' (2) yum mariadb 설치 조회 root# yum list mariadb yum mariadb 삭제root# yum remove mariadb.* mariadb 설치root# vi /etc/yum.repos.d/MariaDB.repo [m..