2019-04-20から1日間の記事一覧

SQL構文2

任意の位置で列を追加 alter table my_items add sales int after keyword; update my_items set sales=18 where id=3; 値の取得 select sum(price) from my_items; select max(price) from my_items; select count(id) from my_items; select avg(price) fr…