คำถามติดแท็ก with-clause

7
คุณใช้ประโยค“ ด้วย” ใน MySQL ได้อย่างไร?
ฉันกำลังแปลงแบบสอบถาม SQL Server ทั้งหมดของฉันเป็น MySQL และแบบสอบถามของฉันที่มีWITHอยู่ในนั้นล้วนล้มเหลว นี่คือตัวอย่าง: WITH t1 AS ( SELECT article.*, userinfo.*, category.* FROM question INNER JOIN userinfo ON userinfo.user_userid = article.article_ownerid INNER JOIN category ON article.article_categoryid = category.catid WHERE article.article_isdeleted = 0 ) SELECT t1.* FROM t1 ORDER BY t1.article_date DESC LIMIT 1, 3
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.