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 0 vote down

MACRO SQL EXPRESSIONS

For instance:

SELECT *
  FROM X
 WHERE MACRO_1(A, B, C)

Where MACRO_1 can be something like:

A*2/B+C

or something like:

A=2 OR B<C

MACRO_1 is not a function, it's just a macro to be preprocessed and substituted before the final parsing.

They are like functions but because are substituted the optimizer can take advantage of indexes, not like funcions that the optimizer does not know what happens.

link|flag
vote up 0 vote down

Computed columns.

Hability to add columns on table based on an expression for another one without need to create a view.

link|flag
show 1 more comment
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

Automated dba notification in the case where the optimizer generates a plan different that the plan that that the query was tested with.

In other words, every query can be registered. At that time, the plan is saved. Later when the query is executed, if there is a change to the plan, the dba receives a notice, that something unexpected occurred.

link|flag
vote up 0 vote down

A CreateOrAlter command.

I am sick and tired of changing back and forth between "Create Proc" and "Alter Proc". I don't care if it is create or alter, I just want the end result to be what I put in the body of the procedure.

link|flag
vote up 0 vote down

Nested aggregate functions.

PostgreSQL doesn't allow something like SELECT MAX(COUNT(*))...

link|flag
show 1 more comment
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 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

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 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 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

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 2 vote down

Check constraints with subqueries, I mean something like:

CHECK ( 1 > (SELECT COUNT(*) FROM TABLE WHERE A = COLUMN))
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 0 vote down

I would love to see the ability to put a WHERE clause on at index creation time:

CREATE INDEX BAR ON FOO (FooName, FooId) WHERE FooEnabled = 1;

Then, the optimizer could use this when processing SQL like this:

SELECT FooId, FooName
FROM Foo
WHERE FooEnabled = 1
ORDER BY FooName;

This seems like a solvable problem from both the index creation and optimizer perspectives. Indeed, you can simulate the same thing using function based indexes and/or materialized views. This is messy and can involve changing the SQL issued by an application.

It would be nice to have a syntactic sugar above.

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

SQL Server specific:

Some decent date functions, like TRUNC. Improvements to full text searching (better control over matching logic)

I would LOVE it if SQL server could store different databases within the same database and log files (shared FILEGROUPS) so I can backup the WHOLE server in one go.

Full syntax and error checking of a stored procedure when I compile it (not only when I run it)

Yes, this is starting to sound like "I want all the Oracle features in SQL Server without all the complexity (and cost!)"

link|flag
vote up 0 vote down

Increased temporal database support in Sql Server. Intervals, overlaps, etc.

Increased OVER support in Sql Server, including LAG, LEAD, and TOP.

link|flag
vote up 0 vote down

Kevin beat me to it by a couple of seconds... but more generally,

select @columnName from @tableName
order by @otherColumnName

etc

It would render swathes of nasty string concatenation followed by

exec (@sql)

instantly unnecessary.

link|flag
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 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 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 0 vote down

No more record size/command length limits.

link|flag
vote up 0 vote down

select on recursive tables:

   select * from rdfClass where rdfClass.uri is instance of "foaf:Person";
link|flag
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

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 0 vote down

LINQ-like functionalities integration to SQL :-)

link|flag
show 1 more comment
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 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 6 vote down

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

link|flag
show 6 more comments
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.