Created
May 29, 2021 00:04
-
-
Save Cerwyn/1286a46cdf7406c5643d911a0d3c668f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <?php | |
| SELECT * | |
| FROM `articles` | |
| WHERE EXISTS (SELECT * | |
| FROM `users` | |
| WHERE `articles`.`user_id` = `users`.`id` | |
| AND EXISTS (SELECT * | |
| FROM `profiles` | |
| WHERE `profiles`.`user_id` = `users`.`id`) | |
| AND `users`.`deleted_at` IS NULL) | |
| AND `verified` = '1' | |
| AND `active` = '1' | |
| ORDER BY `created_at` DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment