レコードの更新
> update users set email='taro@example.com' where id=5; > update users set email='taro@example.com', name='Yamada' where id=5;
レコードの削除
>delete from users where score <= 3.0;
レコードの更新
> update users set email='taro@example.com' where id=5; > update users set email='taro@example.com', name='Yamada' where id=5;
レコードの削除
>delete from users where score <= 3.0;