일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 오랜지파이
- after_save
- Time.znoe.now
- ubuntu
- change_column
- 설치
- Java
- 쿠버네티스
- with_indifferent_access
- 사용중인포트검색
- ruby #string #strip #split #gsub
- docker
- Ruby on Rails
- RUBY
- Rails
- after_update
- 도커
- Migrate
- MySQL
- change_column_null
- install
- Visual Studio Code
- docket
- 우분투
- 주차장 시스템
- 이것이 자바다
- Orange Pi 3B
- mac
- Kotlin
- 우분투 24
- Today
- Total
목록Database (4)
중고 신입이 개발해보기..
https://github.com/rangyu/TIL/blob/master/mysql/MySQL-%EC%99%84%EC%A0%84-%EC%82%AD%EC%A0%9C%ED%95%98%EA%B3%A0-%EC%9E%AC%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0-(MacOS).md GitHub - rangyu/TIL: 오늘 내가 배운 것 (Today I Learned) 오늘 내가 배운 것 (Today I Learned). Contribute to rangyu/TIL development by creating an account on GitHub. github.com
패키지 검색 $ brew search postgresql homebrew로 설치하기.. $ brew install postgresql 보고 따라한 사이트 https://neulpeumbomin.tistory.com/9 Mac PostgreSQL 설치 MacOS PostgreSQL 설치 설치환경 MacOS homebrew버전 : homebrew 1.3.2 PostgreSQL Version : v9.6 목차 homebrew homebrew? 설치 간단한 사용법 Postgresql 설치 설치 설치 확인 Postgresql 서비스 시작 접속 테.. neulpeumbomin.tistory.com $ postgres --version postgres (PostgreSQL) 12.2 $ postgres --versi..
PostgreSQL의 기본 포트는 5432 를 사용한다. 참고로 - 오라클 : 1521- Mysql : 3306- PPAS(Postgres Plust Advanced Server) : 5444 를 사용한다.
생활 코딩 DATABASE MySQL 강의를 보면서.. 실습한것. 설치하는 부분은 패스 > SHOW DATABASES; // - 생성mysql> CREATE DATABASE opentutorial;Query OK, 1 row affected (0.00 sec) - 삭제mysql> drop DATABASE opentutorial;Query OK, 0 rows affected (0.01 sec) // table, 표- 수평으로 보면 row, record, 행- 수직으로 보면 column, 컬럼, 열 - 데이터 타입, 구조 // CREATE TABLE topc( id INT(11) NOT NULL AUTO_INCREMENT, title VARCHAR(100) NOT NULL, description TEXT N..