SQL adding 2 query's to make one
Advertisements This is the data I’m working with in my SQL database: Symbol | Close_Below AAPL 1 TSLA 0 AAPl 0 AAPL 1 SPY 0 TSLA 1 SPY 0 AAPL 1 SQL Query I’m using to count how many times a symbol is in the database: SELECT Symbol, count(*) as SymbolCount FROM data GROUP BY… Read More SQL adding 2 query's to make one