forked from chhrrr/RAP
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
-- recent projects | ||
|
||
SELECT p.name projectName, u.name userName, p.create_date projectCreateTime, p.introduction | ||
FROM tb_project p | ||
JOIN tb_user u ON p.user_id = u.id | ||
ORDER BY p.id DESC | ||
|
||
-- recent users | ||
|
||
SELECT * | ||
FROM tb_user | ||
ORDER BY id DESC | ||
|
||
-- counters | ||
SELECT COUNT(*) userNum FROM tb_user; | ||
SELECT COUNT(*) projectNum FROM tb_project; |