Viewing 3 posts - 1 through 3 (of 3 total)
I'm presuming following the last post that it's not the right kind of solution, but would this work as an embedded SQL query in Excel? When I've mapped this to...
October 17, 2012 at 10:34 am
This should create the test data needed.....
-- Drop tables if they exist
IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[dbo].[Employee]') AND OBJECTPROPERTY(id, N'IsUserTable') = 1) DROP TABLE [dbo].[Employee]
IF...
October 17, 2012 at 9:50 am
Thanks for the feedback so far. Okay, so what I'm actually needing to do is.......
I have two tables, the first is just the employees, the second is a transactional table...
October 17, 2012 at 8:39 am
Viewing 3 posts - 1 through 3 (of 3 total)