```mermaid
%%{init: {
'theme': 'base',
'themeVariables': {
'fontSize': '11px',
'nodePadding': '1',
'nodeBorder': '1',
'lineWidth': '0.8',
'fontFamily': 'Arial'
}
}}%%
flowchart TD
sqlBatch_start([sqlBatch])
sqlBatch_start --> sqlBatch_0_0[sqlOrPSqlStatement]
sqlBatch_0_0 --> sqlBatch_0_1[BATCHSEPARATOR ';']
sqlBatch_0_1 --> sqlBatch_0_2[sqlOrPSqlStatement]
sqlBatch_0_2 --> sqlBatch_0_3[BATCHSEPARATOR ';']
sqlBatch_0_3 --> sqlBatch_end(( ))
```