반응형
# mysql -u사용자 -p패스워드 -D데이터베이스
mysql> status;
mysql> show databases;
mysql> show tables;
mysql> desc 테이블명;
mysql> show procedure status where db ='데이터베이스명';
mysql> show create procedure 프로시저명;
mysql> select * from 테이블명;
mysql 현재 설정갑 확인
mysql> show variables;
mysql variable 변경
mysql> set global 변경값
반응형