Jump to content

Posting sql examples here denied


Owdy

Recommended Posts

SELECT dbo.Employees.Last_Name, dbo.Employees.First_Name, dbo.Employees.ELocation
FROM          dbo.train_doc_emp LEFT OUTER JOIN
                        dbo.Employees ON dbo.train_doc_emp.train_doc_emp_emp_pk = dbo.Employees.Emp_pk
WHERE      (dbo.train_doc_emp.train_doc_emp_date IS NULL) AND (dbo.train_doc_emp.train_doc_emp_train_doc_pk = 118) AND 
                        (dbo.Employees.Active_Inactive = N'a')
GROUP BY dbo.Employees.ELocation, dbo.Employees.First_Name, dbo.Employees.Last_Name
ORDER BY dbo.Employees.ELocation

Worked for me?

Link to comment
Share on other sites

SELECT * FROM banana WHERE sausage = 'yum';

 

I think its a little rediculous that you cant post sql querys in code box in here. Just my opinion. If i wanna show sql commands, i have to post screenshots.

Is this an issue whereby you actually can't post them, or you can't see 'SQL' in the drop down code box?

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...