📄 sqlchanges20010511.sql
字号:
-- 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -