mysql 테이블 속성변경(수정,추가,삭제) modify,add, drop 테이블 초기화(truncate)
woobi나 dothome을 통해 서버생성 후 putty나 xshell을 통해 접속. 1. DB 생성 (1)mysql -uroot -papmsetup mysql (enter) //root권한 (2) create database school; (enter) //school이라는 테이블명을 가진 데이터베이스 생성 (3) insert into school(Host,User,Password) values('localhost','school',password('1234'));//password로 했을 때 비밀번호를 감춰줌 // 'Y'를 -> 19개 입력 (4) insert into db values ('localhost','school','school','Y','Y','Y','Y','Y','Y','Y','Y','..
2015. 8. 5.