25 lines
1.1 KiB
SQL
25 lines
1.1 KiB
SQL
insert into mmt_ods.mmt_config
|
|
(file_format,sheet_name,target_table,f1_modified)
|
|
values
|
|
('FTDRY','summary','FTDRY_summary_Tractor Model','Tractor Model'),
|
|
('FTDRY','summary','FTDRY_summary_Make of Implement','Make of Implement'),
|
|
('FTDRY','summary','FTDRY_summary_Test Condition_1:','Test Condition_1:'),
|
|
('FTDRY','summary','FTDRY_summary_Test Engineer Comments_1','Test Engineer Comments_1'),
|
|
('FTDRY','summary','FTDRY_summary_Test Manager Comments_1','Test Manager Comments_1'),
|
|
('FTDRY','summary','FTDRY_summary_Test Condition:_2','Test Condition:_2'),
|
|
('FTDRY','summary','FTDRY_summary_Test Engineer Comments_2','Test Engineer Comments_2'),
|
|
('FTDRY','summary','FTDRY_summary_Test Manager Comments_2','Test Manager Comments_2')
|
|
;
|
|
|
|
drop table if exists mmt_staging2.process_table_deepthi;
|
|
|
|
create table mmt_staging2.process_table_deepthi as
|
|
select * from mmt_staging1.mmt_staging_generic_table
|
|
where file_format='FTDRY' and sheet_name='Summary Sheet Field Perf.'
|
|
and file_name
|
|
='20210217_FTDRY_1. FC - Arjun 555 HBTU Plough_dry land L3 @ 1500 with Arjun 605 Sindhnoor.xlsx';
|
|
|
|
|
|
|
|
|