Open SQL syntax examples

Working with single entries select * from ska1where saknr = ‘77004500’.* Do something with datamove-corresponding ska1 to itab.append itab. endselect. Reading all entries into an internal table This is more efficient that example 1 select * from ska1 into table itabwhere saknr like ‘77%’order by saknr. Reading single entries You must specify the full primarykey … Read more