Jaegoo.Kim on Oct 22, 20202020-10-22T00:00:00+08:00
Updated Apr 21, 20212021-04-21T21:33:53+08:00 1 min read
MySQL
user 조회
1
| select host, user, authentication_string from user;
|
유저 삭제
1
| drop user springstudent@'%'
|
외부에서 접근 가능하도록 유저 생성
1
| create user springstudent@'%' identified by 'springstudent';
|
local에서만 접근 가능하도록 유저 생성:
1
| create user springstudent@localhost identified by 'springstudent';
|
spring student에게 moBack 데이터베이스에 대한 모든 권한 부여
1
| grant all privileges on moBack to 'springstudent';
|
Column 추가
1
| ALTER TABLE safe_place.place ADD COLUMN number_of_people int NOT NULL;
|
PostgreSQL
COALESCE(argument1, argument2) : argument1이 null일때 argument2값 반환
NULLIF(exp1, exp2) : exp1값과 exp2값이 동일하면 NULL, 그렇지 않으면 exp1반환