Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Inserting an ampersand (&)
Smile and Try
SET DEF OFF ; and then insert it;
You can use SQL*Plus, if you are running it as a client from windows:
SQL> select ascii('µ') from dual;
ASCII('µ')
181
SQL> select chr(181) from dual;
CHR
---
µ
Or, again from windows, you can bring up the character map tool, choose a font like Courier, and find the character you are looking for. The hex ascii code is displayed for the character when you click on it. Convert to decimal, and there you are!
Diana
-----Original Message-----
Sent: Monday, November 20, 2000 3:51 PM
To: Multiple recipients of list ORACLE-L
I have used the chr() function for some things, now I need to insert µ - the greek letter mu.
Anyone know a quick and easy way to find the ASCII value so I can use the
chr() function
to insert this character into the database?
TIA,
Donna Maser
Oracle DBA
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Diana Duncan
INET: Diana_at_fileFRENZY.com
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Liststo: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Fri Sep 22 2000 - 06:52:51 CDT
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
![]() |
![]() |