请问通过什么去判断字符是否为汉字?

判断字段中是否包含中文的方法
[@more@]

/* Formatted on 2006/09/07 13:58 (Formatter Plus v4.8.7) */
CREATE TABLE test_char_han(
c_han VARCHAR2(100)
);

/* Formatted on 2006/09/07 13:58 (Formatter Plus v4.8.7) */
INSERT INTO test_char_han
(c_han
)
VALUES ('鸟'
);

/* Formatted on 2006/09/07 13:58 (Formatter Plus v4.8.7) */
SELECT *
FROM test_char_han COMMIT;


/* Formatted on 2006/09/07 13:57 (Formatter Plus v4.8.7) */
SELECT c_han
FROM test_char_han
WHERE ASCIISTR (c_han) like '%%';

请使用浏览器的分享功能分享到微信等