on 2020 Jun 16 2:36 PM
Does anyone know how to insert the greek symbol "δ" into a table?
If you're fluent in Unicode ( I'm not 🙂 there's NCHAR string variables and the UNISTR function.
BEGIN DECLARE s NCHAR ( 1 ); SET s = UNISTR ( '\\u03B4' ); SELECT s; END; s 'δ'
Note that ISQL and this website displays the delta character as a delta character, but my favorite text editor does not... it displays delta as a question mark... so you can't always trust what your GUI shows you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
69 | |
9 | |
8 | |
7 | |
7 | |
6 | |
5 | |
4 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.