I have a database of information of a possible 1-100 rows. The issue is some of the numbers don't exist.
When I run a query the following results are retuned:
Unit,Location,Name,Description
1,1,a,xxxx
1,2,a,xxxx
1,3,a,xxxx
1,6,a,xxxx
1,7,a,xxxx
1,9,a,xxxx
1,10,a,xxxx
How can I get the following result instead:
Unit,Location,Name,Description
1,1,a,xxxx
1,2,a,xxxx
1,3,a,xxxx
1,4,-,----
1,5,-,----
1,6,a,xxxx
1,7,a,xxxx
1,8,-,----
1,9,a,xxxx
1,10,a,xxxx