Good day!
How would I go about adding a "YES/NO" field to my query results? I would like this to be the first field.
Here is my SQL
How would I go about adding a "YES/NO" field to my query results? I would like this to be the first field.
Here is my SQL
Code:
SELECT Lease.VIN, Lease.LeaseNumber, Customer.Name, Customer.Address, Vehicle.Make, Vehicle.Model, Vehicle.Year
FROM ((Vehicle INNER JOIN Tax ON Vehicle.VIN = Tax.VIN) INNER JOIN StatusActions ON Vehicle.VIN = StatusActions.VIN) INNER JOIN (Customer INNER JOIN Lease ON Customer.CustID = Lease.CustID) ON Vehicle.VIN = Lease.VIN
WHERE (((Lease.Archived)=-1));