Palindrome detection: Difference between revisions

SQL Implementation
No edit summary
(SQL Implementation)
Line 2,422:
The quick brown fox jumped over the lazy dogs
Palindrome: False</pre>
 
=={{header|SQL}}==
<lang sql>SET @txt = REPLACE('In girum imus nocte et consumimur igni', ' ', '');
SELECT REVERSE(@txt) = @txt;</lang>
 
=={{header|Tcl}}==
4

edits