티스토리 뷰
MySQL과 PostgreSQL 차이
참조: https://en.wikibooks.org/wiki/Converting_MySQL_to_PostgreSQL
1. limit
--MySQL
select * from table_name limit 시작점, 개수;
--PostgreSQL
select * from table_name limit 개수 offset 시작점;
2. 자동 증가(MySQL의 auto_increment와 PostgreSQL의 serial)
--MySQL
create table table_name (bno int not null auto_increment unique);
--PostgreSQL
create table table_name (bno serial not null);
3. .....
'DBMS > PostgreSQL' 카테고리의 다른 글
PostgreSQL 관련 팁 모음 (0) | 2016.08.16 |
---|---|
shp2pgsql 이용해서 shp파일을 postgresql db에 얹혀보기 (0) | 2016.06.14 |
postgresql DB생성 및 접속 시 Peer authentication에러 발생 시 해야할 것 (1) | 2016.06.09 |
ubuntu에 PostgreSQL 설치하기 (0) | 2016.02.24 |
댓글