Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2016
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. id | sender_mail | recipient_mail | username | subject | message | created
  2. 1 aa@test.com bb@test.com aaa xxxx yyy 10
  3. 2 bb@test.com aa@test.com bbb xxxx yyy 11
  4. 3 cc@test.com bb@test.com ccc xxxx yyy 12
  5. 4 bb@test.com cc@test.com bbb xxxx yyy 13
  6. 5 dd@test.com gg@test.com ddd xxxx yyy 14
  7. 6 gg@test.com bb@test.com ggg xxxx yyy 15
  8.  
  9. id | sender_mail | recipient_mail | username | subject | message | created
  10. 2 bb@test.com aa@test.com bbb xxxx yyy 11
  11. 4 bb@test.com cc@test.com bbb xxxx yyy 13
  12. 6 gg@test.com bb@test.com ggg xxxx yyy 15
  13.  
  14. select *
  15. from messages as m
  16. where
  17. m.sender_mail = 'bb@test.com' OR
  18. m.recipient_mail = 'bb@test.com'
  19.  
  20. group by m.sender_mail, m.recipient_mail
  21.  
  22. DrupalCoreDatabaseDatabaseExceptionWrapper: SQLSTATE[42000]:
  23. Syntax error or access violation: 1055 'drupal.m.username' isn't in GROUP BY:
  24. SELECT m.sender_mail, m.recipient_mail, m. username, m.subject, m.message, m.created
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement