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 10 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 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 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 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 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 3 vote down

Automatic denormalization.

But I may be dreaming.

link|flag
show 4 more comments
vote up -1 vote down

Clean way to enforce optimal execution plan.

There are hints in MSSQL and Oracle, but you need to persuade the DBMS to use them, they can be silently ignored, and this is cited as a feature, not a bug in documentation.

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

Optimizing QBE (Query By Example). Finally giving us a way to pass off responsibility to the database for all those queries that want to match on an arbitrary subset of columns.


EDIT: QBE is a non-SQL methodology for querying relational data. To add it to SQL would maybe look something like

SELECT columns
FROM table
WHERE EXAMPLE (firstname, lastname, birthdate) = ('Fred%', 'Jones', '20090209')

Functionally to support something like what Access has for the graphical querydef designer. You give it a list of fields, and collect a set of matching user inputs, and the optimizer would toss out the columns not specified and optimize on the rest.

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

Foreing keys that manage interval dates on other tables

For instance, for tables:

TABLE_A(begin DATE, end DATE)
TABLE_B(day DATE)

Some way to define On TABLE_B:

FOREIGN KEY (day)
  REFERENCES INTERVAL ON TABLE_A (begin, endd)
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
vote up 0 vote down

Partial Foreing key constraint.

If have those tables:

create table prova_a (a number, b number);
alter table prova_a add primary key (a,b);
create table prova_b (a number, b number);
alter table prova_b add foreign key (a,b) references prova_a(a,b) ;
insert into prova_a  values (1,2);

You can insert this without error:

insert into prova_b  values (123,null);
insert into prova_b  values (null,null);
insert into prova_b  values (null,123);

I wish something to avoid this without using check constraints.

link|flag
show 2 more comments
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 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 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 0 vote down

LINQ-like functionalities integration to SQL :-)

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

select on recursive tables:

   select * from rdfClass where rdfClass.uri is instance of "foaf:Person";
link|flag
vote up 0 vote down

No more record size/command length limits.

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

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