向 SQL 查询添加自定义列
假设我有一个像这样构建的数据库:
NUM VALUE
1 3.51
2 hello
1 3.487
2 goodbye
1 32.4
2 foo
我需要做什么来添加另一列,其中所有具有 num“2”的值都将在其中。
例如,
NUM VALUE value2
1 3.51 hello
1 3.487 goodbye
1 32.4 foo
知道如何做到这一点吗? 谢谢!
Lets say I have a DB built like this:
NUM VALUE
1 3.51
2 hello
1 3.487
2 goodbye
1 32.4
2 foo
what I need to do to add another column in which all the values having num "2" will be in.
e.g.
NUM VALUE value2
1 3.51 hello
1 3.487 goodbye
1 32.4 foo
any idea how I can do this?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在此示例中,我使用 SQLite,其中表 Source 已经具有内置 rowid。根据您使用的数据库,您可能需要添加自己的自动递增整数列(即整数主键),但想法是相同的。
In this example I am using SQLite, where the table Source already has a built-in rowid. Depending on the database you are using, you may need to add your own auto-incrementing integer column (i.e., integer primary key), but the idea is the same.