in reply to Re: What programming language do you hate the most?
in thread What programming language do you hate the most?

While I agree about the critic I don't think SQL belongs into this list of "programing languages".

It's hardly Turing complete (see SO is-sql-or-even-tsql-turing-complete ) and rarely used as such.

More an embedded external DSL for querying data.

HTML, CSS and regexes are other examples of DSLs which are not really typical programming languages.

Cheers Rolf
(addicted to the Perl Programming Language and ☆☆☆☆ :)
Wikisyntax for the Monastery

  • Comment on Re^2: What programming language do you hate the most?

Replies are listed 'Best First'.
Re^3: What programming language do you hate the most?
by chacham (Prior) on Dec 02, 2017 at 16:51 UTC

    and rarely used as such.

    You should visit SQL forums more often. :P

        Heh. Creating the (text-based) UI is doable, waiting for results is not, as it is a query language. The extensions to the language (t-sql, pl/sql, etc..) make it more interesting, though.

        Fwiw, i once created a query to make an arrow shoot up the screen in a terminal. Not useful at all, but a fun way to learn the language and its extensions.