Collections:
Enter Comments in PL/SQL in Oracle
How To Enter Comments in PL/SQL in Oracle?
✍: FYIcenter.com
There are two ways to enter comments into PL/SQL codes:
Here is some example of PL/SQL comments:
BEGIN
-- This is a comment
/* To do:
Need to write some codes here
*/
END;
⇒ Different Types of PL/SQL Code Blocks in Oracle
⇐ PL/SQL Language Case Insensitive in Oracle
2018-12-26, 3287🔥, 0💬
Popular Posts:
What are binary literals supported in SQL Server Transact-SQL? Binary literals in Transact-SQL are s...
How REAL and FLOAT Literal Values Are Rounded in SQL Server Transact-SQL? By definition, FLOAT(n) sh...
How to change the data type of an existing column with "ALTER TABLE" statements in SQL Server? Somet...
How To Install Oracle Database 10g XE in Oracle? To install 10g universal edition, double click, Ora...
How To Select All Columns of All Rows from a Table with a SELECT statement in SQL Server? The simple...