Hi!
I have the following statement:
update grid_hdr set datum = XX where grid_id = XX;
I get grid_id by doing:
select grid_id from grid_hdr where (map_data_set_name = 'blbla' and geo_name = 'blibli')
Could someone please help me:
1) merge those two statements into one
2) make a script that will ask map_data_set_name, geo_name and datum and then search the grid_id to make the update statement.
Thanks a lot!
I have the following statement:
update grid_hdr set datum = XX where grid_id = XX;
I get grid_id by doing:
select grid_id from grid_hdr where (map_data_set_name = 'blbla' and geo_name = 'blibli')
Could someone please help me:
1) merge those two statements into one
2) make a script that will ask map_data_set_name, geo_name and datum and then search the grid_id to make the update statement.
Thanks a lot!