John
2013-03-13 08:14:49 UTC
USE ICA_NHS_GPdb
GO
IF OBJECT_ID('ICA_NHS_GPdbSchema.Address', 'U') IS NOT NULL
DROP TABLE ICA_NHS_GPdbSchema.Address
GO
CREATE TABLE ICA_NHS_GPdbSchema.Address
(
AddressID int identity(1,1) not null,
AddressLine1 nchar(6) null,
AddressLine2 nchar(20) null,
AddressLine3 nchar(20) null,
AddressLine4 nchar(20) null,
AddressLine5 nchar(20) null,
UpdatedLastIn VARCHAR(10) null,
Postcode VARCHAR(10) null
)
GO
how could i popular a single row onto the above table using T-SQL thank you