A
A
Alexander2016-10-02 16:40:18
Professional Certification
Alexander, 2016-10-02 16:40:18

ZCE certified. How to prepare?

Dear colleagues. There are several questions about ZCE:
1. How to apply for participation in certification?
2. How to prepare? What materials are best to use?
3. Is it possible to retake the exam and when?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
I
idShura, 2016-10-13
@inik23

If you add one more row to your table with an example
, then the Rsa97 query will return the wrong answer.
Try this query:

SELECT ID, 
       CATEGORY_ID, 
       TITLE 
  FROM PAGES 
 WHERE TITLE IN (SELECT TITLE FROM PAGES GROUP BY TITLE HAVING COUNT(*)>1) 
 GROUP BY TITLE,
          CATEGORY_ID
HAVING COUNT(*)=1;

R
Rsa97, 2016-10-13
@Rsa97

SELECT * 
  FROM (
    SELECT `title`
      FROM `table`
      GROUP BY `title`
      HAVING COUNT(DISTINCT `category_id`) > 1
  ) AS `c`
  JOIN `table` AS `t` USING (`title`)

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question