Notice
Recent Posts
Recent Comments
Link
목록2024/12 (1)
삶의 공유
SQL 사용법
show databases; > 현재 있는 database를 보여달라create database board;> "board"라는 이름의 database를 만들어 달라create user 'user_id'@'localhost' identified by 'pw;> User를 만들건데 'user_id' / 'pw' 로 사용 할거야select `user` from `mysql`.`user`;> 현재 'user' list를 보여줘show grants for 'user_id'@'localhost';> user_id의 권한을 알려줘grant all on `board`.* to 'user_id'@'localhost' with grant option;>'board' database에서 'user_id' 에게 모든 ..
Programing/Database
2024. 12. 18. 21:56