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, 3375🔥, 0💬
Popular Posts:
How To Convert Numeric Expression Data Types using the CAST() Function in SQL Server Transact-SQL? I...
How To Convert Binary Strings into Hexadecimal Character Strings in SQL Server? When a query returns...
How to check if two JSON values have overlaps using the JSON_OVERLAPS() function? JSON_OVERLAPS(json...
How to convert a JSON (JavaScript Object Notation) quoted string into a regular character string usi...
How To Round a Numeric Value To a Specific Precision in SQL Server Transact-SQL? Sometimes you need ...