Have you encountered deficiencies, limitations or flaws while using SQL?
EDIT: I cannot believe that several things which are so trivial to accomplish under 3GL's like BASIC or other non-SQL data manipulation languages are sooo complicated or impossible to do under SQL!
I can think of several examples: Complicated queries/updates, SQL injection, etc. € Could you accomplish the same task easily with a different DML or programming language?
Can you provide me with case examples of problems you have encountered or cases where for example an SQL query required complex constructs vs. simple constructs in something else? EDIT: A trap that people fall into is thinking that the desired solution has to fit within a single SQL query or statement. Not true! Most solutions don't fit into a rectangle, There are lots of rollups, summaries, special cases, etc. so it's both simpler and more efficient to select parts of the desired data into separate temporary tables. Likewise, in a procedural language you wouldn't try do all your computation in a single line of code, or even in a single function, hopefully!
Can you suggest improvements to make SQL more powerful and less complicated? e.g. PSM, etc.
Which RDBMS/SQL product implementation do you feel is the most robust?
What capabilities from a non-SQL environment would you like to see implemented in SQL?..
Let's suppose SQL didn't exist, what would you use for manipulating data?..