Viewing 14 posts - 1 through 15 (of 15 total)
Thanks Sean and Luis. I imported the records from an excel file and sql server automatically defined the data type as float. As you guys suggested, I have now updated...
October 18, 2016 at 8:48 am
John Mitchell-245523 (9/27/2016)
September 27, 2016 at 9:38 am
I do understand that. Both tables have 'North Middlesex University Hospital NHS Trust' and 'N18 1QX' but when you join the tables and match on name and postcode it fails...
September 23, 2016 at 11:49 am
Results based on exact match on the post code and org name.
September 23, 2016 at 11:20 am
J Livingston SQL (9/23/2016)
USE tempdb
GO
CREATE TABLE [dbo].[masterContacts](
[Organisation Name] [nvarchar](255) NULL,
[Office Address Line 1] [nvarchar](255) NULL,
[Office Address Line 2] [nvarchar](255) NULL,
[Office Address Line 3]...
September 23, 2016 at 11:15 am
Thom A (9/23/2016)
September 23, 2016 at 9:59 am
J Livingston SQL (9/23/2016)
your sample data:
USE tempdb
GO
CREATE TABLE [dbo].[masterContacts](
[Organisation Name] [nvarchar](255) NULL,
[Office Address Line 1] [nvarchar](255)...
September 23, 2016 at 9:58 am
J Livingston SQL (9/23/2016)
what happens if you change
inner...
September 23, 2016 at 9:44 am
Thom A (9/23/2016)
September 23, 2016 at 9:41 am
I have provided the schema for tables and some dummy insert data.
The problem is
When i run a SELECT on masterContacts table by using a LIKE wild card I get...
September 23, 2016 at 9:36 am
J Livingston SQL (9/23/2016)
looking at your dummy data....dont see that you have any data there that is...
September 23, 2016 at 9:12 am
Data is available to use for anyone by UK government but I have removed the file anyway.
Here are the schemas of two tables and some dummy data
Schema:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER...
September 23, 2016 at 6:52 am
GilaMonster (9/23/2016)
Post made up...
September 23, 2016 at 6:42 am
J Livingston SQL (9/23/2016)
are you sure you should have posted that information on a public forum?
yes, all information is available to public on data.gov website. Thats where I have got...
September 23, 2016 at 6:37 am
Viewing 14 posts - 1 through 15 (of 15 total)