how can I return a list of all the rows in the table including null values, as my where clause matching is only true if the value exists in both tables

SELECT * FROM Items, Stock WHERE Items.StocksId=Stock.StocksId

the Items table could have a null value for the StocksId so how do I return these values too!

thanks in advance
enex