Question about naming conventions

  • In the code below, I used this to transfer data:

    insert into dbo.Contact

    select

    ContactID

    ,NameStyle

    ,Title

    ,FirstName

    ,MiddleName

    ,LastName

    ,Suffix

    ,EmailAddress

    ,EmailPromotion

    ,Phone

    ,ModifiedDate

    from AdventureWorks.Person.Contact

    this may be a stupid question, but I'm still learning sql. What does "Person" represent in the naming convention. AdventureWorks is the database, Contact is the table. What is Person?

  • Person is the schema the object belongs to.

    Jeffrey Williams
    “We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”

    ― Charles R. Swindoll

    How to post questions to get better answers faster
    Managing Transaction Logs

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply