Select records where FirstName="John" AND LastName="Jackson"?
To retrieve records that satisfy multiple simultaneous criteria, use the AND logical conjunction operator:
SELECT *
FROM Customers
WHERE FirstName = 'John'
AND LastName = 'Jackson';
### Optimization Tip:
When frequently querying by both columns, create a composite index on (LastName, FirstName):
CREATE INDEX idx_customers_name ON Customers(LastName, FirstName);
Composite B-tree indexes allow the database engine to locate the exact record in $O(\log n)$ lookup time.