gpt4 book ai didi

mysql 字段名包含反引号

转载 作者:行者123 更新时间:2023-11-29 11:15:04 24 4
gpt4 key购买 nike

我想创建一个带有反引号包围的字段的表格

CREATE TABLE t1 (`id` INT);

我已经尝试过:

CREATE TABLE t1 (``id`` INT);

但是没有成功。

最佳答案

它位于 documentation (强调我的):

Identifier quote characters can be included within an identifier if you quote the identifier. If the character to be included within the identifier is the same as that used to quote the identifier itself, then you need to double the character.

就您而言:

CREATE TABLE t1 (```id``` INT);

关于mysql 字段名包含反引号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39892970/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com