app_score.sql 210 B

123456
  1. drop table if exists `app_score`;
  2. create table `app_score`(
  3. app_id INT,
  4. user_id BIGINT,
  5. score INT
  6. )