Forum Replies Created

Viewing 15 posts - 16 through 30 (of 167 total)

  • RE: SQL statement Using UNION all

    Do you want the results from both tables or only the results from table1 if they can be linked to table2?

  • RE: UNION Query with Filtered Results

    select productID, Status

    into #tmpTable

    from table3

    insert #tmpTable

    select productid,Status

    from table2 t2

    where t2.productID not in (select productID from #tmpTable)

    insert #tmpTable

    select productid,Status

    from table1 t1

    where t1.productID not in (select productID from #tmpTable)

  • RE: A Single-Parameter Date Range in SQL Server Reporting Services

    joeroshan (11/18/2015)


    Great idea, thanks for taking time to share your work.

    +1

  • RE: Create Procedure

    The fact that most people got it wrong speaks for itself.

  • RE: Case statement that contains multiplication

    cory.bullard76 (8/26/2015)


    Gila...that worked great. Thanks again! Quick question. Some of the results from that statement are 7.8400 (for example). I'd like to round that. But,...

  • RE: What are your five most common T-SQL commands

    Thanks for getting this going, Grant. It is one of the best and most entertaining threads I've seen in a while.

    My two bits:

    -- Desperately trying to find a foreign...

  • RE: Are the posted questions getting worse?

    Alvin Ramard (8/13/2015)


    Lynn Pettis (8/12/2015)


    < Rant >

    I don't know about others but I am really tired of people thinking that using vulgarity is appropriate in a professional environment and this...

  • RE: Refresher Book on Statistics

    I used SPSS for a couple years and got somewhat grounded in stats. Near my elbow I have a copy of "Statistics For Dummies" that I keep (in addition...

  • RE: Advice for Trainers

    pietlinden (7/2/2015)


    Regarding teaching caution: Some people might say we go overboard. The attendees must have their manager sign and return a document that says they understand that they are responsible...

  • RE: Advice for Trainers

    One other point: Invariably the part of the class that newbies struggle with the most is joins, primary vs foreign keys and table aliases. Regarding the joins, one of...

  • RE: Advice for Trainers

    I teach a three day “SQL Boot Camp” class (that I developed) about twice a year for our customers and internal staff. The goal is to teach beginners how...

  • RE: Training Computer Scientists

    With the resources we have available to us today (including the wonderful forums at SSC), all you need to succeed in this business is aptitude and desire. There are...

  • RE: Need Ammunition for Developers Doing Select *'s

    Give them the url to this thread...

  • RE: The Test of Time

    Steve Jones - SSC Editor (6/23/2015)

    I loved Netware's performance on IPX v Windows early stuff, but certainly Netware was slow to move to IP based work. That was an issue,...

  • RE: The Test of Time

    I’m sure many of you are old enough to remember when Novell Netware was king and “poor” Windows NT was dismissed out of hand (some said that NT stood for...

Viewing 15 posts - 16 through 30 (of 167 total)