In Query Builder options, I uncheck "Use fully qualified object names" but full names are still used.
This seemed to work in 5.6
Toad SS 5.6
SELECT Employees.BirthDate, Employees.LastName
FROM Northwind.dbo.Customers Customers, Northwind.dbo.Employees Employees
w/out option "use fully qualified object names"
SELECT Customers.CompanyName, Employees.HireDate
FROM Customers Customers, Employees Employeess
Toad SS 5.7
SELECT Customers.ContactName, Employees.BirthDate
FROM Northwind.dbo.Customers Customers, Northwind.dbo.Employees Employees
w/out option "use fully qualified object names"
SELECT Customers.ContactName, Employees.BirthDate
FROM Northwind.dbo.Customers Customers, Northwind.dbo.Employees Employees
,
WORKAROUND:
None
,
STATUS:
Waiting for fix in future version of Toad for SQL Server