レコードの更新
1 2 |
> update users set email='taro@example.com' where id=5; > update users set email='taro@example.com', name='Yamada' where id=5; |
レコードの削除
1 |
>delete from users where score <= 3.0; |
最近はウェブ系アプリ中心、あとWindowsアプリちょっと
レコードの更新
1 2 |
> update users set email='taro@example.com' where id=5; > update users set email='taro@example.com', name='Yamada' where id=5; |
レコードの削除
1 |
>delete from users where score <= 3.0; |