Guest User

Untitled

a guest
May 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.57 KB | None | 0 0
  1. IF(tbl_category.survey_id = 4,
  2.  IF(tbl_category.id = 4 OR tbl_category.id IS NULL,
  3.   IF(parent_category.survey_id = 4 OR parent_category.survey_id IS NULL,   parent_category.id, 'Uncategorized'),
  4.   IF(tbl_category.survey_id = 4 OR tbl_category.survey_id IS NULL, tbl_category.id, 'Uncategorized')
  5.  ),
  6.  IF(parent_category.id = 4 OR parent_category.id IS NULL,
  7.   IF(tbl_category.survey_id = 4 OR tbl_category.survey_id IS NULL, tbl_category.id, 'Uncategorized'),
  8.   IF(parent_category.survey_id = 4 OR parent_category.survey_id IS NULL, parent_category.id, 'Uncategorized')
  9.  )
Add Comment
Please, Sign In to add comment