如何使用sql命令INSERT输入新行

发布于 2024-12-04 09:07:33 字数 191 浏览 0 评论 0原文

问:

我想知道在表中插入新行的 SQL 查询语法。

我的意思是,我想在表中输入以下内容abc

  aaaaaaaaaa

  bbbbbbbbbb

  cccccccccccc

通过 INSERT 命令维护新行。

提前致谢

Q:

I wanna to know the syntax of SQL query of inserting new line in my table.

I mean ,I wanna to enter the following in my table abc:

  aaaaaaaaaa

  bbbbbbbbbb

  cccccccccccc

Maintaining the new line.through INSERT command .

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

罪#恶を代价 2024-12-11 09:07:35

当我回答这个问题时,您已将其标记为 SQL Server 2008。您已将其编辑为关于 Informix。以下适用于 SQL Server 2008。Informix

INSERT INTO MyTable(MyField) VALUES('AAAAA' + CHAR(13) + CHAR(10) + 'BBBBB')

看起来更复杂。您必须根据 这个文档我在谷歌上找到了“informix sql newline”

EXECUTE PROCEDURE IFX_ALLOW_NEWLINE('T')

When I answered this question, you'd got it tagged with SQL Server 2008. You've since edited it to be about Informix. The following works for SQL Server 2008.

INSERT INTO MyTable(MyField) VALUES('AAAAA' + CHAR(13) + CHAR(10) + 'BBBBB')

Informix looks more complicated. You have to set an option according to this documentation I found with a google for "informix sql newline"

EXECUTE PROCEDURE IFX_ALLOW_NEWLINE('T')
拥抱没勇气 2024-12-11 09:07:35

从未使用过 informix,但对于 SQL Server 2008 这只是。

INSERT INTO abc
            (col1)
VALUES (
'aaaaaaaaaa

bbbbbbbbbb

cccccccccccc');

Never used informix but for SQL Server 2008 this is just.

INSERT INTO abc
            (col1)
VALUES (
'aaaaaaaaaa

bbbbbbbbbb

cccccccccccc');
你好,陌生人 2024-12-11 09:07:35
INSERT INTO MyTable(MyColumn) VALUES ('aaaaaaaaaa

bbbbbbbbbb

cccccccccccc');
INSERT INTO MyTable(MyColumn) VALUES ('aaaaaaaaaa

bbbbbbbbbb

cccccccccccc');
不醒的梦 2024-12-11 09:07:35

为什么不存储没有换行符的行,然后在应用程序的客户端提供它?

why not store the row without the newline, then on the client side of your app, provide for it?

北城孤痞 2024-12-11 09:07:35

这取决于您使用的是 Windows 还是 *nix 约定,但它将是 \r\n 的某种组合,

看看Sql 查询中的新行问题。

It depends whether you're using Windows or *nix conventions, but it will be some combination of \r and \n

Have a look at the New line in Sql Query question.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文