You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT author_name FROM commits GROUP By author_name
46
-
SELECT author_name FROM commits GROUP By author_name having author_name ="AmrDeveloper"
47
+
SELECT author_name FROM commits GROUP By author_name HAVING author_name ="AmrDeveloper"
47
48
48
49
SELECT*FROM branches
49
50
SELECT*FROM branches WHERE is_head = true
50
51
SELECT name, LEN(name) FROM branches
51
52
52
53
SELECT*FROM tags
53
54
SELECT*FROM tags OFFSET 1LIMIT1
55
+
56
+
SELECTpath, count() AS changes_count, SUM(insertions) AS additions, SUM(removals) AS removes FROM diffs_changes GROUP BYpathORDER BY changes_count DESC
0 commit comments