Please be aware that the content in SAP SQL Anywhere Forum will be migrated to the SAP Community in June and this forum will be retired.

    CREATE TABLE "DBA"."web_print_name" (
    "name" VARCHAR(10) NOT NULL,
    "no" NCHAR(10) NULL,
    PRIMARY KEY ( "name" ASC )
) IN "system";

INSERT INTO "DBA"."web_print_name" ("name","no") VALUES('陈二','002');
INSERT INTO "DBA"."web_print_name" ("name","no") VALUES('刘一','001');

--SQL:

SELECT name,no   FROM "DBA"."web_print_name" for json raw

alt text

Is this a utf-8 encoding problem? How should it be solved? thanks

asked 04 Jun '21, 11:57

mfkpie8's gravatar image

mfkpie8
273667075
accept rate: 12%

edited 04 Jun '21, 11:57


permanent link

answered 04 Jun '21, 13:43

Justin%20Willey's gravatar image

Justin Willey
7.6k137179249
accept rate: 20%

Are there any fixes for the new version?

(05 Jun '21, 01:42) mfkpie8
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×246

question asked: 04 Jun '21, 11:57

question was seen: 489 times

last updated: 05 Jun '21, 01:42