-
[Ubuntu] mysql 명령어 정리CI-CD/Ubuntu 2022. 5. 21. 17:43반응형
- 로그인
# user와 password를 기입 mysql -u user -p Enter password :
- database 보기
show databases;
- Database 생성
create database mysql_db;
- DB를 선택
use testdb;
- DB의 table 보기
show tables;
반응형'CI-CD > Ubuntu' 카테고리의 다른 글
[ubuntu] iptables 명령어 정리 (0) 2022.06.10 [Ubuntu] SCP(secure copy)를 이용하여 파일 전송하기 (0) 2022.06.08 [Ubuntu]iptables 특정 포트 열기, 닫기 (0) 2022.05.07 [Ubuntu] 패킷 동작 원리 (0) 2022.05.07 [Ubuntu] 파일 이동 파일 명 변경 (0) 2022.05.07