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 |
Tags
- 설정
- AJAX
- Python
- Exception
- JDBC
- maven
- Thymeleaf
- IntelliJ
- 문서
- ubuntu
- PostgreSQL
- MySQL
- error
- Source
- JavaScript
- Open Source
- git
- oracle
- myBatis
- STS
- Docker
- jpa
- Eclipse
- MSSQL
- spring
- Spring Boot
- Tomcat
- SpringBoot
- 오픈소스
- Core Java
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