在学习窗口函数之前,我们新建一个Product表并往其中插入一些数据: drop table if exists Product; create table Product ( product_id char(4) not null, product_name varchar(100) not null, product_type varchar(32) not null, sale_price integer , purchase_price integer , regist_date dat…