首页 > 代码库 > postgreSQL intro

postgreSQL intro

1. create table

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

 

postgreSQL intro