- 3 How Many Syntax Errors In The Following Code K Proc Sql Select Count Supplier Name Low Volume Suppliers From S 1 (28.79 KiB) Viewed 32 times
3. How many syntax errors in the following code? * K proc sql; select count(Supplier_Name) 'Low Volume Suppliers' from s
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
3. How many syntax errors in the following code? * K proc sql; select count(Supplier_Name) 'Low Volume Suppliers' from s
3. How many syntax errors in the following code? * K proc sql; select count(Supplier_Name) 'Low Volume Suppliers' from select Supplier_Name, count(Quantity) as Num_Sold from orion.product_dim as p inner join orion.order_fact as o on (p.product_ID= o.Product_ID) group by Supplier_Name order by Num_Sold; where Num_Sold < 5; quit;