sqlchanges20010511.sql
来自「GForge 3.0 协作开发平台 支持CVS, mailing lists, 」· SQL 代码 · 共 13 行
SQL
13 行
-- by: pfalcon-- purpose: table with history of users' rating, for tracking changes/graphingCREATE TABLE user_metric_history(month int not null,day int not null,user_id int not null,ranking int not null,metric float not null);CREATE UNIQUE INDEX user_metric_history_date_userid ON user_metric_history(month,day,user_id);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?