combine two tables

  • Hi,

    I have one problem to join two views in one.

    I have two views which have some fields same and some different.

    I want to join these views in one. But I don't know how because they are not linked over some field.

    Some field are the same(and coming from same tables on sql) but some are different.

    And I want to but everything in one table.

    In attachment are results form view1 and view2 and data views code.

    I did mark with yellow fields which are same in both views.

    Please help

  • Hi,

    I did add in attachment overlap of two views:

    yelow -exist in both views

    Thanks

  • PLC-Master (8/27/2012)


    Hi,

    I did add in attachment overlap of two views:

    yelow -exist in both views

    Thanks

    Nobody is going to be able to provide much assistance from what you have posted. We would need to see ddl (create table statements), sample data (insert statements), desired output based on your sample data. Please see the first link in my signature.

    Also, you will have much better luck if you post your code directly using the IFCode shortcuts (on the left when posting) instead of attaching MS-Office documents.

    _______________________________________________________________

    Need help? Help us help you.

    Read the article at http://www.sqlservercentral.com/articles/Best+Practices/61537/ for best practices on asking questions.

    Need to split a string? Try Jeff Modens splitter http://www.sqlservercentral.com/articles/Tally+Table/72993/.

    Cross Tabs and Pivots, Part 1 – Converting Rows to Columns - http://www.sqlservercentral.com/articles/T-SQL/63681/
    Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs - http://www.sqlservercentral.com/articles/Crosstab/65048/
    Understanding and Using APPLY (Part 1) - http://www.sqlservercentral.com/articles/APPLY/69953/
    Understanding and Using APPLY (Part 2) - http://www.sqlservercentral.com/articles/APPLY/69954/

  • Hi,

    thanks on advice for future problems.

    I did solve problem with UNION ALL statement.

    Before that I did equalize fields in both views.

    So for example: if I have in view1 filed speed_of_line and I don't have it in view2, I should add it in view2 as dump filed with value zero (select .... ,0 as speed_of_line,).

    So on the end in both views I have same number, type and name of filed so on the end I can make UNION ALL.

    Thanks

Viewing 4 posts - 1 through 3 (of 3 total)

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