Sudoku: Difference between revisions

39 bytes added ,  5 years ago
m
Added "Works with" tag.
(Added SQL implementation of brute-force algorithm using recursive WITH clause)
m (Added "Works with" tag.)
Line 10,372:
 
=={{header|SQL}}==
{{works with|oracle|11.2 and higher}}
 
The implementation below uses a recursive WITH clause (recursive query, recursive factored subquery). This is supported - with minimal syntactical differences - by some (perhaps many) but not all SQL dialects. The code was written and tested in Oracle SQL; Oracle has supported recursive subqueries since version 11.2.
 
Anonymous user