mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 17:23:27 -05:00
* Fixed some bugs caused by rafactoring * Verifying a test db is created before running the tests
84 lines
1.6 KiB
Transact-SQL
84 lines
1.6 KiB
Transact-SQL
SELECT * FROM [Person].[Address]
|
|
|
|
SELECT [AddressID]
|
|
,[AddressLine1]
|
|
,[AddressLine2]
|
|
,[City]
|
|
,[StateProvinceID]
|
|
,[PostalCode]
|
|
,[SpatialLocation]
|
|
,[rowguid]
|
|
,[ModifiedDate]
|
|
FROM [Person].[Address]
|
|
GO
|
|
SELECT [AddressTypeID]
|
|
,[Name]
|
|
,[rowguid]
|
|
,[ModifiedDate]
|
|
FROM [Person].[AddressType]
|
|
GO
|
|
SELECT [ContactTypeID]
|
|
,[Name]
|
|
,[ModifiedDate]
|
|
FROM [Person].[ContactType]
|
|
GO
|
|
SELECT [BusinessEntityID]
|
|
,[EmailAddressID]
|
|
,[EmailAddress]
|
|
,[rowguid]
|
|
,[ModifiedDate]
|
|
FROM [Person].[EmailAddress]
|
|
GO
|
|
SELECT [BusinessEntityID]
|
|
,[PersonType]
|
|
,[NameStyle]
|
|
,[Title]
|
|
,[FirstName]
|
|
,[MiddleName]
|
|
,[LastName]
|
|
,[Suffix]
|
|
,[EmailPromotion]
|
|
,[rowguid]
|
|
,[ModifiedDate]
|
|
FROM [Person].[Person]
|
|
GO
|
|
SELECT [BusinessEntityID]
|
|
,[PhoneNumber]
|
|
,[PhoneNumberTypeID]
|
|
,[ModifiedDate]
|
|
FROM [Person].[PersonPhone]
|
|
GO
|
|
SELECT [LocationID]
|
|
,[Name]
|
|
,[CostRate]
|
|
,[Availability]
|
|
,[ModifiedDate]
|
|
FROM [Production].[Location]
|
|
GO
|
|
SELECT [ProductID]
|
|
,[Name]
|
|
,[ProductNumber]
|
|
,[MakeFlag]
|
|
,[FinishedGoodsFlag]
|
|
,[Color]
|
|
,[SafetyStockLevel]
|
|
,[ReorderPoint]
|
|
,[StandardCost]
|
|
,[ListPrice]
|
|
,[Size]
|
|
,[SizeUnitMeasureCode]
|
|
,[WeightUnitMeasureCode]
|
|
,[Weight]
|
|
,[DaysToManufacture]
|
|
,[ProductLine]
|
|
,[Class]
|
|
,[Style]
|
|
,[ProductSubcategoryID]
|
|
,[ProductModelID]
|
|
,[SellStartDate]
|
|
,[SellEndDate]
|
|
,[DiscontinuedDate]
|
|
,[rowguid]
|
|
,[ModifiedDate]
|
|
FROM [Production].[Product]
|
|
GO |