如何使用sql命令INSERT输入新行
问:
我想知道在表中插入新行的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
当我回答这个问题时,您已将其标记为 SQL Server 2008。您已将其编辑为关于 Informix。以下适用于 SQL Server 2008。Informix
看起来更复杂。您必须根据 这个文档我在谷歌上找到了“informix sql newline”
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.
Informix looks more complicated. You have to set an option according to this documentation I found with a google for "informix sql newline"
从未使用过 informix,但对于 SQL Server 2008 这只是。
Never used informix but for SQL Server 2008 this is just.
为什么不存储没有换行符的行,然后在应用程序的客户端提供它?
why not store the row without the newline, then on the client side of your app, provide for it?
这取决于您使用的是 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.