PLSQL文法基礎

declareは必須ではない

begin
	insert into aaa (key1,data1)
	values(1,to_char(sysdate,'yyyymmdd'));
	
	commit;
end;
/