Questions tagged «comma»

14
将逗号分隔的字符串变成单独的行
我有一个像这样的SQL表: | SomeID | OtherID | Data +----------------+-------------+------------------- | abcdef-..... | cdef123-... | 18,20,22 | abcdef-..... | 4554a24-... | 17,19 | 987654-..... | 12324a2-... | 13,19,20 是否有一个查询,我可以在其中执行这样的查询SELECT OtherID, SplitData WHERE SomeID = 'abcdef-.......',该查询返回单个行,如下所示: | OtherID | SplitData +-------------+------------------- | cdef123-... | 18 | cdef123-... | 20 | cdef123-... | 22 …
234 sql-server  tsql  split  comma 

5
为什么列表中允许尾随逗号?
我很好奇为什么在Python中列表中的尾部逗号是有效的语法,并且似乎Python只是忽略了它: >>> ['a','b',] ['a', 'b'] 自从('a')和('a',)是两个元组时,它是一个有意义的元组,但是在列表中呢?
135 python  list  syntax  comma  trailing 

8
在mysql中用逗号分隔所选值的字符串
我想在MySQL中将选定的值转换成逗号分隔的字符串。我的初始代码如下: SELECT id FROM table_level where parent_id=4; 哪个产生了: '5' '6' '9' '10' '12' '14' '15' '17' '18' '779' 我想要的输出如下所示: "5,6,9,10,12,14,15,17,18,779"
74 mysql  select  comma 

7
c ++:用逗号格式化数字?
我想编写一个方法,该方法将接受一个整数并返回std::string以逗号格式化的该整数的。 声明示例: std::string FormatWithCommas(long value); 用法示例: std::string result = FormatWithCommas(7800); std::string result2 = FormatWithCommas(5100100); std::string result3 = FormatWithCommas(201234567890); // result = "7,800" // result2 = "5,100,100" // result3 = "201,234,567,890" string用逗号将数字格式化为a的C ++方法是什么? (奖金也将处理double。)
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.