Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一张桌子,在这张桌子上我有一列用于阿拉伯语文本。但是,在该列中,文本是从左到右的方向。是否有可能使它们成为 rtl 方向?
REVERSE()功能来了 这是手动输入。
REVERSE()
这个函数是多字节安全的,这意味着它对每个字符集/编码都是安全的。
SELECT REVERSE('abc');
结果是
cba
要使其永久化,您可以像这样更新您的列:
UPDATE yourTable SET yourColumn = REVERSE(yourColumn)