Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- interrupt
- MariaDB
- where
- 협업
- aws
- MySQL
- 알고리즘
- oauth2
- DataSource
- OS
- hikaricp
- DBCP
- JDBC
- database
- DDL
- select
- springboot
- greedy
- docker
- dml
- 알고리즘 #백준 #1717
- Spring
- error
- Git
- constraints
- Operating System
- Transaction
- GPG
- ConnectionPool
- 백준
Archives
- Today
- Total
목록DDL (1)
did_story
데이타베이스 기초부터 저자가 보고 정리하기 위해 쓴 글임을 밝힙니다.CREATE새로운 데이타 베이스나 테이블을 만드는데 사용한다.CREATE DATABASE newDatabase;❓: newDatabase란 이름의 데이타 베이스를 만들겠다. CREATE TABLE newDatabase.Products ( id INT PRIMARY KEY, name VARCHAR(255), price DECIMAL(10, 2));❓: newDatabase의 Products라는 table 생성. CREATE TABLE newDatabase.Products ASSELECT * FROM oldDatabase.Products;❓: oldDatabase.Products 테이블의 데이터를 가져와 newDatabase..
BackEnd🍃/DB & SQL
2025. 1. 13. 17:35