tableを作成する
create table users (id int unsigned primary key auto_increment,
name varchar(255),
score float not null
);
レコードを作る
insert into users (name, score) values ('test', 4.3);レコードをアップデートする
update users set score = 4.5 where name = 'test';レコードを削除する
delete from users where name = 'test';↓来て頂きありがとうございます。クリックしていただくと、励みになります。↓

にほんブログ村
No comments:
Post a Comment