SQL Best Practices
In a query , If there is more then one condition then Write AND / OR in between them.
Instead of double == , use single = .
Example:
SELECT product_id from Products where low_fats = 'Y' and recyclable = 'Y'
Link question
We can use != or <> for...
pradeepcodes.hashnode.dev2 min read