-- workout
INSERT INTO workout (id,name,split,ordno,equip,diff, pstype,wtype,wtsets,wtrepsfrom,wtrepsto,uid,price,color)
SELECT 2002,'Circuit training with cardio',1,1,2,1,0,0,0,0,0,2002,0,0
UNION ALL SELECT 2001,'Circuit training full-body (dumbbells)',1,2,1,1,0,0,0,0,0,2001,0,0;


-- wday
INSERT INTO wday (wk,num,color,descr,uid,rem,dt)
SELECT 2001,1,0,'Day A',102001,'',0.0
UNION ALL SELECT 2002,1,0,'Day A',102002,'',0.0;

-- wmove
INSERT INTO wmove (wk,daynum,num,ex,dt,supset,supsetopt,ttlwgt,ttlrep,ttldst,ttltm,tmstart,tmend,ttlcal,hravg,hrmax,angle,dstunit,wgtunit,rem,color)
SELECT 2002,1,1,29,0.0,1,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0,0.0,0,0,'',0
UNION ALL SELECT 2002,1,2,34,0.0,1,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0,0.0,0,0,'',0
UNION ALL SELECT 2002,1,3,58,0.0,1,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0,0.0,0,0,'',0
UNION ALL SELECT 2002,1,4,219,0.0,1,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0,0.0,0,0,'',0
UNION ALL SELECT 2002,1,5,71,0.0,1,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0,0.0,0,0,'',0
UNION ALL SELECT 2002,1,6,343,0.0,1,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0,0.0,0,0,'',0
UNION ALL SELECT 2002,1,7,203,0.0,1,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0,0.0,0,0,'',0
UNION ALL SELECT 2001,1,1,105,0.0,1,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0,0.0,0,0,'',0
UNION ALL SELECT 2001,1,2,318,0.0,1,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0,0.0,0,0,'',0
UNION ALL SELECT 2001,1,3,65,0.0,1,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0,0.0,0,0,'',0
UNION ALL SELECT 2001,1,4,48,0.0,1,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0,0.0,0,0,'',0
UNION ALL SELECT 2001,1,5,307,0.0,1,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0,0.0,0,0,'',0
UNION ALL SELECT 2001,1,6,83,0.0,1,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0,0.0,0,0,'',0
UNION ALL SELECT 2001,1,7,203,0.0,1,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0,0.0,0,0,'',0;
