Facebook
From eee, 1 Month ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 127
  1. SELECT product.Id,product.Name,product.Price,product.CategoryId
  2. FROM product
  3. LEFT JOIN orderdetails ON orderdetails.ProductId = product.Id
  4. WHERE orderdetails.ProductId IS NULL;