Answer the question
In order to leave comments, you need to log in
How to join a table and find a connection?
There is a format table:
SELECT '1'as a,'3'as b, '5' as c
UNION
SELECT ''as a,'3'as b, '5' as c
UNION
SELECT '6'as a,'' as b, '7' as c
UNION
SELECT '6'as a,'3'as b, '' as c
UNION
SELECT '99'as a,'39'as b, '' as c
UNION
SELECT '99'as a,''as b, '98' as c;
+----+----+----+
| a | b | c |
+----+----+----+
| 1 | 3 | 5 |
| | 3 | 5 |
| 6 | | 7 |
| 6 | 3 | |
| 99 | 39 | |
| 99 | | 98 |
+----+----+----+
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question