vote up 14 vote down star
7

Dealing with SQL shows us some limitations and gives us an opportunity to imagine what could be.

Which improvements to SQL are you waiting for? Which would you put on top of the wish list?

I think it can be nice if you post in your answer the database your feature request lacks.

flag
1  
Mainly what I would like to see is some attempt to remove much of the cruft that has crept into various dialects of SQL (many anti-relational), making them more incompatible and complex. – le dorfier Jul 16 at 20:55

46 Answers

1 2 next
vote up 20 vote down

T-SQL Specific: A decent way to select from a result set returned by a stored procedure that doesn't involve putting it into a temporary table or using some obscure function.

SELECT * FROM EXEC [master].[dbo].[xp_readerrorlog]
link|flag
show 3 more comments
vote up 16 vote down

I know it's wildly unrealistic, but I wish they'd make the syntax of INSERT and UPDATE consistent. Talk about gratuitous non-orthogonality.

link|flag
show 3 more comments
vote up 11 vote down

A decent way of walking a tree with hierarchical data. Oracle has CONNECT BY but the simple and common structure of storing an object and a self-referential join back to the table for 'parent' is hard to query in a natural way.

link|flag
show 5 more comments
vote up 11 vote down

Operator to manage range of dates (or numbers):

where interval(date0, date1) intersects interval(date3, date4)

EDIT: Date or numbers, of course are the same.

EDIT 2: It seems Oracle have something to go, the undocumented OVERLAPS predicate. More info here.

link|flag
show 5 more comments
vote up 9 vote down

More SQL Server than SQL but better integration with Source Control. Preferably SVN rather than VSS.

link|flag
show 2 more comments
vote up 7 vote down

Implicit joins or what it should be called (That is, predefined views bound to the table definition)

SELECT CUSTOMERID, SUM(C.ORDERS.LINES.VALUE) FROM CUSTOMER C

A redesign of the whole GROUP BY thing so that every expression in the SELECT clause doesn't have to be repeated in the GROUP BY clause

Some support for let expressions or otherwise more legal places to use an alias, a bit related to the GROUP BY thing, but I find other times what I just hate Oracle for forcing me to use an outer select just to reference a big expression by alias.

link|flag
vote up 6 vote down

I would like to see the ability to use Regular Expressions in string handling.

link|flag
show 6 more comments
vote up 5 vote down

A way of dynamically specifying columns/tables without having to resort to full dynamic sql that executes in another context.

link|flag
vote up 4 vote down

Ability to define columns based on other columns ad infinitum (including disambiguation).

This is a contrived example and not a real world case, but I think you'll see where I'm going:

SELECT LTRIM(t1.a) AS [a.new]
    ,REPLICATE(' ', 20 - LEN([a.new])) + [a.new] AS [a.conformed]
    ,LEN([a.conformed]) as [a.length]
FROM t1
INNER JOIN TABLE t2
    ON [a.new] = t2.a
ORDER BY [a.new]

instead of:

SELECT LTRIM(t1.a) AS [a.new]
    ,REPLICATE(' ', 20 - LEN(LTRIM(t1.a))) + LTRIM(t1.a) AS [a.conformed]
    ,LEN(REPLICATE(' ', 20 - LEN(LTRIM(t1.a))) + LTRIM(t1.a)) as [a.length]
FROM t1
INNER JOIN TABLE t2
    ON LTRIM(t1.a) = t2.a
ORDER BY LTRIM(t1.a)

Right now, in SQL Server 2005 and up, I would use a CTE and build up in successive layers.

link|flag
vote up 4 vote down

I'd like the vendors to actually standardise their SQL. They're all guilty of it. The LIMIT/OFFSET clause from MySQL and PostGresql is a good solution that no-one else appears to do. Oracle has it's own syntax for explicit JOINs whilst everyone else uses ANSI-92. MySQL should deprecate the CONCAT() function and use || like everyone else. And there are numerous clauses and statements that are outside the standard that could be wider spread. MySQL's REPLACE is a good example. There's more, with issues about casting and comparing types, quirks of column types, sequences, etc etc etc.

link|flag
1  
LIMIT/OFFSET is standardized, see troels.arvin.dk/db/rdbms/… A MySQL-like REPLACE is standardized, as well, in the MERGE construct. So actually, a lot things have been standardized (sometimes for a long time), but users need to ask their DBMS producer to support it... – Troels Arvin Sep 7 at 20:10
show 2 more comments
vote up 4 vote down

parameterized order by, as in:


select * from tableA order by @columName
link|flag
show 2 more comments
vote up 3 vote down

Support in SQL to specify if you want your query plan to be optimized to return the first rows quickly, or all rows quickly.

Oracle has the concept of FIRST_ROWS hint, but a standard approach in the language would be useful.

link|flag
show 1 more comment
vote up 3 vote down

Automatic denormalization.

But I may be dreaming.

link|flag
show 4 more comments
vote up 2 vote down

Improved pivot tables. I'd like to tell it to automatically create the columns based on the keys found in the data.

link|flag
show 1 more comment
vote up 2 vote down

Check constraints with subqueries, I mean something like:

CHECK ( 1 > (SELECT COUNT(*) FROM TABLE WHERE A = COLUMN))
link|flag
vote up 2 vote down

These are all MS Sql Server/T-SQL specific:

  1. "Natural" joins based on an existing Foreign Key relationship.
  2. Easily use a stored proc result as a resultset
  3. Some other loop construct besides while
  4. Unique constraints across non NULL values
  5. EXCEPT, IN, ALL clauses instead of LEFT|RIGHT JOIN WHERE x IS [NOT] NULL
  6. Schema bound stored proc (to ease #2)
  7. Relationships, schema bound views, etc. across multiple databases
link|flag
vote up 2 vote down

WITH clause for other statements other than SELECT, it means for UPDATE and DELETE.

For instance:

WITH table as (
  SELECT ...
)
DELETE from table2 where not exists (SELECT ...)
link|flag
vote up 1 vote down

String Agregation on Group by (In Oracle is possible with this trick):

SELECT deptno, string_agg(ename) AS employees
FROM   emp
GROUP BY deptno;

DEPTNO EMPLOYEES
---------- --------------------------------------------------
    10 CLARK,KING,MILLER
    20 SMITH,FORD,ADAMS,SCOTT,JONES
    30 ALLEN,BLAKE,MARTIN,TURNER,JAMES,WARD
link|flag
show 2 more comments
vote up 1 vote down

On my wish list is a database supporting sub-queries in CHECK-constraints, without having to rely on materialized view tricks. And a database which supports the SQL standard's "assertions", i.e. constraints which may span more than one table.

Something else: A metadata-related function which would return the possible values of a given column, if the set of possible values is low. I.e., if a column has a foreign key to another column, it would return the existing values in the column being referred to. Of if the column has a CHECK-constraint like "CHECK foo IN(1,2,3)", it would return 1,2,3. This would make it easier to create GUI elements based on a table schema: If the function returned a list of two values, the programmer could decide that a radio button widget would be relevant - or if the function returned - e.g. - 10 values, the application showed a dropdown-widget instead. Etc.

link|flag
vote up 1 vote down

More OOP features:

  • stored procedures and user functions

    CREATE PROCEDURE tablename.spname ( params ) AS ...

called via

EXECUTE spname
FROM tablename
WHERE conditions
ORDER BY

which implicitly passes a cursor or a current record to the SP. (similar to inserted and deleted pseudo-tables)

  • table definitions with inheritance

table definition as derived from base table, inheriting common columns etc

Btw, this is not necessarily real OOP, but only syntactic sugar on existing technology, but it would simplify development a lot.

link|flag
show 1 more comment
vote up 1 vote down

Abstract tables and sub-classing

create abstract table person
  (
  id primary key,
   name varchar(50)
  );

create table concretePerson extends person
  (
  birth date,
  death date
  );

create table fictionalCharacter  extends person
  (
  creator int references concretePerson.id      
  );
link|flag
show 5 more comments
vote up 1 vote down

UPSERT or MERGE in PostgreSQL. It's the one feature whose absence just boggles my mind. Postgres has everything else; why can't they get their act together and implement it, even in limited form?

link|flag
vote up 1 vote down

Arrays

I'm not sure what's holding this back but lack of arrays lead to temp tables and related mess.

link|flag
show 2 more comments
vote up 1 vote down

Some kind of UPGRADE table which allows to make changes on the table to be like the given:

CREATE OR UPGRADE TABLE 
( 
  a VARCHAR,
  ---
)
link|flag
vote up 1 vote down

My wish list (for SQLServer)

  1. Ability to store/use multiple execution plans for a stored procedure concurrently and have the system automatically understand the best stored plan to use at each execution.

Currently theres one plan - if it is no longer optimal its used anyway or a brand new one is computed in its place.

  1. Native UTF-8 storage

  2. Database mirroring with more than one standby server and the ability to use a recovery model approaching 'simple' provided of course all servers are up and the transaction commits everywhere.

  3. PCRE in replace functions

  4. Some clever way of reusing fragments of large sql queries, stored match conditions, select conditions...etc. Similiar to functions but actually implemented more like preprocessor macros.

link|flag
vote up 1 vote down

Comments for check constraints. With this feature, an application (or the database itself when raising an error) can query the metadata and retrieve that comment to show it to the user.

link|flag
show 2 more comments
vote up 1 vote down

Something which I call REFERENCE JOIN. It joins two tables together by implicitly using the FOREIGN KEY...REFERENCES constraint between them.

link|flag
vote up 1 vote down

A relational algebra DIVIDE operator. I hate always having to re-think how to do all elements of table a that are in all of given from table B.

http://www.tc.umn.edu/~hause011/code/SQLexample.txt

link|flag
vote up 1 vote down

1) [LEFT | RIGHT] SEMI JOIN and [LEFT | RIGHT] ANTI JOIN These would allow me to write something like

-- return customers who have placed at least one order
SELECT c.*
  FROM Customers c
  LEFT SEMI JOIN o ON o.CustomerId = c.Id

-- return customers who have NOT placed any order
SELECT c.*
  FROM Customers c
  LEFT ANTI JOIN o ON o.CustomerId = c.Id

This would have exactly the same result as

SELECT c.*
  FROM Customers c
 WHERE c.Id IN(SELECT CustomerId FROM Orders)

and

SELECT c.*
  FROM Customers c
 WHERE c.Id NOT IN(SELECT CustomerId FROM Orders)

, respectively. However the IN (or the pretty much equivalent EXISTS) syntax is much messier than my proposed syntax, especially in more complicated cases.

Of course, the semi/anti-joined table can not be referenced so this would be ILLEGAL:

-- Error, can't reference semi joined table.
SELECT c.*, o.OrderNumber
  FROM Customers c
  LEFT SEMI JOIN o ON o.CustomerId = c.Id

2) It woud be nice to have a good solution to the

WHERE Column IN('a', 'b', 'c')

problem when you don't know the number of values to search for. Perhaps it could be possible to allow

WHERE Column IN(ARRAY @array)

and the calling code would bind @array to an array.

Edit: I just thought of one more

3) Some kind of extensibility to the constraint system, which allows coding of constraints between tables which work perfectly in concurrent environments and which lets me manually do any locking and validation to ensure that the constraint is always satisfied. Triggers can be used currently, but they are very hard to get right considering concurrency.

link|flag
vote up 0 vote down

Efficient implementation of SQL standards, such as DOMAINs, for those platforms that don't support them.

link|flag
1 2 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.