250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- MSSQL
- 오픈소스
- Eclipse
- 설정
- IntelliJ
- jpa
- oracle
- ubuntu
- git
- JDBC
- STS
- Open Source
- JavaScript
- Thymeleaf
- Source
- 문서
- Spring Boot
- Exception
- maven
- Core Java
- spring
- PostgreSQL
- myBatis
- MySQL
- SpringBoot
- Docker
- AJAX
- Python
- Tomcat
- error
Archives
- Today
- Total
목록ProgreSQL (1)
헤르메스 LIFE
[ProgreSQL] CREATE TABLE / DROP TABLE / Sequence 생성
https://runebook.dev/ko/docs/postgresql/-index- PostgreSQL 15.0 한국어 runebook.dev 테이블 생성 CREATE TABLE [IF NOT EXISTS] table_name ( column1 datatype(length) column_contraint, column2 datatype(length) column_contraint, column3 datatype(length) column_contraint, table_constraints ); DROP TABLE [IF EXISTS] table_name [CASCADE | RESTRICT]; 샘플 DROP TABLE IF EXISTS `sample`; CREATE TABLE IF NOT EXISTS `..
Database
2023. 3. 5. 11:24