As part of a new HR project you’re creating several stored procedures that will add logging
information to the logs table. This logging information is very detailed and should contain carriage
returns to make paragraphs more readable. How can you add carriage returns to text when
inserting into a table?

A.
Use CASE
B.
Use CHAR
C.
Use TEXTPTR
D.
Use COS
Explanation:
You can use CHAR(13) to add carriage returns. The CHAR function converts an int ASCII code to
a character.