-
Mysql(MariaDB) 기본 명령어(쿼리)DEV/database 2024. 1. 29. 13:27
// 1. mysql 진입 후 // 1.1. 모든 데이터베이스 보기 SHOW DATABASES; // 1.2.1 데이터베이스 생성 CREATE DATABASE [데이터베이스명]; // 1.2.2 데이버베이스 제거 DROP DATABASE [데이터베이스명]; // 1.3. 데이터베이스 진입(사용) USE [데이터베이스명]; // IP, PORT 확인 SHOW VARIABLES WHERE Variable_name IN ('hostname', 'port');
// 2. database 진입 후 // 2.1. 모든 테이블 보기 SHOW TABLES; // 2.2. 특정 테이블 컬럼 정보 보기 (정보 확인) SHOW COLUMNS FROM [테이블명]; // 2.3. 특정 테이블 제거 DROP TABLE [테이블명]; // 3. database 시간 확인 SELECT now();
그 외 쿼리 작성을 시작하려면...
https://seokbong.tistory.com/196
https://seokbong.tistory.com/197
https://seokbong.tistory.com/198
https://seokbong.tistory.com/199
https://seokbong.tistory.com/200
https://seokbong.tistory.com/201
https://seokbong.tistory.com/202
https://seokbong.tistory.com/203
https://seokbong.tistory.com/204
https://seokbong.tistory.com/205
https://seokbong.tistory.com/206
https://seokbong.tistory.com/207
https://seokbong.tistory.com/208
'DEV > database' 카테고리의 다른 글
MariaDB 설치 및 실행, 재실행 방법 (0) 2024.03.13 Mysql 설치방법 + 초기 비밀번호 설정 (0) 2024.03.11 ORACLE 시간을 문자열로 변경 (0) 2023.11.14 ORACLE 현재시간 사용하기 (0) 2023.11.14 ORACLE 페이징 처리 (0) 2023.11.14