[00:04:55] [telegram] If I’m not mistaken, the usual breakpoints for such responsive behaviours in Wikimedia projects are 720px and 1040px [11:40:02] [telegram] https://t.me/joinchat/AAAAAFI2Sqc3y9LGZmBR9A [12:55:55] [telegram] Thanks, but I'm failing to get the actual syntax :( [12:55:55] [telegram] I basically want to combine these two: [12:55:57] [telegram] 1. https://quarry.wmflabs.org/query/50065 [12:55:58] [telegram] 2. https://quarry.wmflabs.org/query/50040 (re @Thecladis: Just use case or if in the select clause inside count instead of filtering in where clause) [13:20:19] [telegram] something like this, I think? https://quarry.wmflabs.org/query/50068 (re @amire80: Thanks, but I'm failing to get the actual syntax :( [13:20:19] [telegram] I basically want to combine these two: [13:20:21] [telegram] 1. https://quarry.wmflabs.org/query/50065 [13:20:22] [telegram] 2. https://quarry.wmflabs.org/query/50040) [13:21:19] [telegram] (maybe sum(if(ct_rev_id is not null, 1, 0)) would be clearer but sum(ct_rev_id is not null) is shorter ^^) [15:31:46] [telegram] Looks right! Thank you! (re @lucaswerkmeister: something like this, I think? https://quarry.wmflabs.org/query/50068) [15:32:46] [telegram] I was never good with JOINs. The "left" keyword confuses me terribly. It's so meaningless. "Left" is just a relative side. [17:55:43] I guess it's from the table names relative in the query [17:55:56] left, all the rows from the table in the from [17:56:03] right, all those from the join [18:30:23] [telegram] On enwiki, when you edit a page, a "wiki markup" section appears under the editor. trwiki used to have this as well. How to restore that feature? [21:37:23] [telegram] Indeed, you are basically just putting two tables next to each other. Some visual perception helps :) (re @wmtelegram_bot: [irc] I guess it's from the table names relative in the query) [21:50:22] [telegram] Yeah, but why is one "left" and the other "right"? It's arbitrary. [21:52:49] [telegram] I'm on the phone now, but maybe you're talking about MediaWiki:Edittools , which can be edited by administrators. Does this help? (re @Yetkin: On enwiki, when you edit a page, a "wiki markup" section appears under the editor. trwiki used to have this as well. How to restore that feature?) [21:54:52] It's not arbitary [21:55:00] It's LTR specific ;P [21:55:13] SELECT * FROM foo LEFT JOIN bar on () [21:55:19] foo is on the LEFT [21:55:21] bar is on the right [21:55:39] I mean, it's same as the naming for many things [21:55:45] It would've made sense to someone at some point