chmod 777 /dir
パーミッションを変更する
chown ubuntu:ubuntu /dir chown ubuntu /dir
所有者を変更
mv ./file.name ./file.name.bk
ファイル名を変える
cp ./file.name ./file.name.bk
ファイルをコピー
mkdir /var/www/html/new
ディレクトリを作成
rm -r /var/www/html/new
ディレクトリを削除
rm ./file.name
ファイルを削除
mysql -u root -p
Mysqlログイン
create database GhostScan;
データベース作成
use GhostScan;
データベースに移動
create table player_tb (id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY,acount varchar(12),password varchar(12),ghost varchar(1024));
テーブルの作成
insert into player_tb (acount,password,ghost) values('player1','pass','data');
データの挿入
update player_tb set ghost='data2' where id=1';
データの更新
alter table player_tb add end_flag boolean after id;
idの後ろにend_flagカラムを追加
alter table player_tb drop end_flag;
end_flagカラムを削除
alter table player_tb modify ghost varchar(2048);
ghostカラムの定義を変更1024文字から2048文字へ
alter table player_tb rename column ghost to ghost1;
ghostカラム名をghost1へ変更
select * from player_tb;
player_tbを取得