How can we help you today? How can we help you today?

Derived tables and CTEs

Derived table support -- FINALLY!!! Seems to be working pretty well. I've tested both inner joins and CROSS APPLY. Only problem I've found is an annoyance... Type:

SELECT p.
FROM
(
SELECT * from
[HumanResources].Employee
) n
CROSS APPLY
(

Now hit [enter] (at least, I would) and the first column name in the database, alphabetically for all tables, will appear.

I am waiting on some CTE support!
amachanic
0

Comments

1 comment

  • Bart Read
    Hi Adam,


    Thanks for this. No CTE support for now I'm afraid. The parser in SQL Compare breaks quite spectacularly when a partial CTE is entered. Expect it in a patch release.


    Thanks,
    Bart
    Bart Read
    0

Add comment

Please sign in to leave a comment.