SQR b It is possible to write multiple SQLs in a SQL Paragra
SQR
b) It is possible to write multiple SQLs in a SQL Paragraph if yes please provide the Explanation
Solution
Yes, but should be separated by Semicolon (;)
For example:
 Begin-SQL
 UPDATE ABC SET NAME = ‘Srinivas’;
 DELETE FROM ABC WHERE NAME <> ‘Srinivas’;
 End-SQL

