Comments
5 comments
-
Hi Maurice,
Thanks for reporting this! It looks like some of the changes we made in the 7.1 beta caused this knock on, I'll look into getting it fixed for you now.
Thanks,
Aaron. -
Hi Aaron,
Great, I will check it in the next Beta.
Just want to say that you all do a great job with beta en new functions! My job is so much easier with SQL-Prompt
Maurice -
Thanks Maurice - that's great to hear!
-
Hi Maurice,
We've just shipped a new beta build (7.1.0.144) which has a fix for this issue.
Thanks!
Aaron. -
Hi Aaron,
Installed the new build and it's fixed!.
Thanks,
Maurice
Add comment
Please sign in to leave a comment.
SQLPrompt version 7.1.0.118
CREATE TABLE [dbo].[tblTabel1] ( tbl1Field1 BIGINT IDENTITY(1,1) NOT NULL , tbl1Field2 nvarchar(10) , tbl1Field3 nvarchar(10)) CREATE TABLE [dbo].[tblTabel2] ( tbl2Field1 BIGINT IDENTITY(1,1) NOT NULL , tbl21Field2 nvarchar(10) , tbl2Field3 nvarchar(10)) SELECT * FROM [dbo].[tblTabel1] EXCEPT SELECT [tblTabel1].[tbl1Field1] , [tblTabel1].[tbl1Field2] , [tblTabel1].[tbl1Field3] FROM [dbo].[tblTabel2]