This query is marked as a draft This query has been published by ShmuelOtto.

SQL

x
 
SHOW tables
;
/*select * from comment
left join comment_block on comment.comment_id = comment_block.comment_id
left join comment_filearchive on comment_filearchive.comment_id = comment_block.comment_id
limit 5 */
SELECT 
    * 
FROM comment as com
JOIN comment_revision as rev ON revision.rev_comment_id = com.comment_id
LIMIT 100;
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.

Checking query status...