[Excel]VLOOKUP
·
Board
Lookup_value : 기준값(이름) Table_array : 갖고 올 값이 있는 엑셀에서 영역을 다 가져옴(이름) - 찾을 시작 값이 같아야 함 Col_index_num : Table_array값의 가져올 순서 번호 Range_lookup : 0(FALSE) 일치한 값을 가져옴 ======================================= #N/A 오류값을 한번에 날린다 Ctrl + G > 옵션 하고 Delete로 날려버린다
[MariaDB] Host 'xxx.xx.xxx.xxx' is not allowed to connect to this MariaDB server
·
Database
MariaDB Host 'xxx.xx.xxx.xxx' is not allowed to connect to this MariaDB server 개발서버에 MariaDB 설치 후 로컬피시에서 원격으로 접속시 SQL 오류 (1130) #0 구문: Host '192.168.110.108' is not allowed to connect to this MariaDB server 라는 경고창이 나타났다. 보안 때문인지 권한설정에 IP를 막는 기능이 존재한다. 나 같은경우는 root였으므로 GRANT ALL PRIVILEGES ON *.* TO @'%' IDENTIFIED BY ; 새로 계정을 만들어서 사용하여도 된다. CREATE USER @'%' IDENTIFIED BY ; GRANT ALL PRIVILEGES O..