phoenix13

导航

 

https://wiki.postgresql.org/wiki/Things_to_find_out_about_when_moving_from_MySQL_to_PostgreSQL

Things to find out about when moving from MySQL to PostgreSQL

1. create table

drop table if exists Ratings;
CREATE TABLE Ratings
(
  "UserID" text,
  "MovieID" text,
  "Rating" double precision,
  PRIMARY KEY("UserID", "MovieID")
);

 

posted on 2015-01-30 01:54  phoenix13  阅读(138)  评论(0编辑  收藏  举报