Which are the SQL improvements you are waiting for?

后端 未结 30 1360
感情败类
感情败类 2021-02-01 22:29

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 t

30条回答
  •  名媛妹妹
    2021-02-01 23:10

    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

提交回复
热议问题