我written a StackExchange DataExplorer query to list all comments by User.Id 的查詢工作,並返回Id S的questions和answers。我不明白的是 爲什麼,對於answers,第二列是空的。 DECLARE @UserId int = ##UserId##
Select p.Id
, '<a href=
我正在與SEDE合作創建投票與帖子比率的圖表。在去除掉所有實際的錯誤,我面臨着一個新的問題:由於某種原因,這個比例是總是 1.這是當前的SQL: SELECT CAST(p.CreationDate AS DATE) AS [CreationDate],
COUNT(CAST(v.CreationDate AS DATE))/COUNT(CAST(p.CreationDate AS D
我想爲Stack Exchange Data Explorer創建一個查詢,該查詢返回任何包含特殊字符的標籤。 (具體地講,任何字符不是a-z,0-9,-,或+) 搜索將返回標籤,如c#,c#-to-f#,.net,和python-2.7。 我試過幾種不同的解決方案,但每個解決方案似乎都有自己的一套問題。 SELECT * FROM tags WHERE tagname NOT REGEXP '^
是否可以簡化多次寫入相同公式的SEDE查詢? 例如,this query正在寫rtrim(LOWER(Title))五次: select
rtrim(LOWER(p.Title)),
count(rtrim(LOWER(p.Title)))
from Posts p
group by rtrim(LOWER(p.Title))
having (count(rtrim(LO
我開始編寫this query,我發現很難明白爲什麼應該關閉這個問題。 select
TOP ##Limit:int?38369## -- The maximum value the hardware can handle.
Posts.Id as [Post Link], -- Question title.
Count(PendingFlags.PostId) a