Computer Science, asked by milijain2018, 9 months ago


consider the following sales table and write the queries
Table:salesSale​

Attachments:

Answers

Answered by anishasa
1

Answer:

a) SELECT * FROM SalesSale;

b) SELECT * FROM SalesSale WHERE `Sale amount`>150000;

c) UPDATE SalesSale SET `Sale date`='2005-03-18 00:00:00.000' WHERE SaleId='1003';

Similar questions