| 일 | 월 | 화 | 수 | 목 | 금 | 토 | 
|---|---|---|---|---|---|---|
| 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 | 
- postgres
 - appium
 - sshpass
 - appium server
 - create table
 - STF
 - Jupyter Notebook
 - Jupyter
 - openpyxl
 - Materials
 - postgresql
 - STF_PortForwarding
 - ftp
 - ubuntu
 - centos
 - rethinkdb
 - 실행권한
 - port forwarding
 - mysql
 - insert
 - PYTHON
 - GoCD
 - kitura
 - ssh
 - perfect
 - 28015
 - nmap
 - nohup
 - SWIFT
 - nGrinder
 
- Today
 
- Total
 
목록postgresql (2)
don't stop believing
postgreSQL 데이터 타입과 옵션들을 확인해 봅시다. PostgreSQL Data TypesThe data type can be any of the following:boolean: Use "boolean" or "bool" to declare a true or false value.character valueschar: holds a single characterchar (#): holds # number of characters. Spaces will be inserted to fill any extra room.varchar (#): holds a maximum of # number of character. Can contain less.integer valuessmallint: whole n..
Ubuntu에 PostgreSQL 설치하고 기본명령(Select, Insert Update, Delete)를 살펴봅시다. 먼저 apt-get을 업데이트 해줍니다. 그리고 postgresql을 설치 합니다. $ sudo apt-get update $ sudo apt-get install postgresql postgresql-contrib postgresql을 설치하면 postgres라는 계정이 생성된다. postgres 계정으로 변경해 보자. postgres 계정은 postgresql을 관리하는 계정이다. $ sudo -i -u postgres postgres 계정으로 변경 후 postgresql로 들어가보자. 명령은 psql이다. $ psql psql (9.3.18) Type "help" for hel..