Advertisement
Guest User

Untitled

a guest
Jul 19th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.23 KB | None | 0 0
  1. alter VIEW [dbo].[view_active_profiles]
  2. as
  3. select
  4.     p.*,
  5.     p.FirstName + '' + p.LastName + '' + p.Location as Search
  6. from
  7.     Profile p
  8.     inner join Billing2.dbo.view_customer_state c on p.CustomerID = c.CustomerID
  9. where
  10.     c.StateBit = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement