使用 shell 脚本创建 xml 文件
我有一个包含两列的表现
column_1 column_1
12345 12345
73255 73255
71377 71377
在我想创建一个 xml,
<header>
<value>12345</value>
<value>73255</value>
<value>71377</value>
<footer>
基本上我需要使用选择查询并将任何一个字段放入 xml 的值中。
您能建议如何以最简单的方式做到这一点吗? 非常感谢你的帮助。
I have a table with two columns
column_1 column_1
12345 12345
73255 73255
71377 71377
Now i want to create an xml like
<header>
<value>12345</value>
<value>73255</value>
<value>71377</value>
<footer>
basically i need to use a select query and put any one of the fields into the values of xml.
could you please suggest how could this be done in an easiest way?
much appreciate your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您已从数据库中进行选择并将这些列存储在
命令行上名为“file”的文件中
imagine you have selected from the database and stored those columns in a file called "file"
on the command line