:::::最後から 3 件のレコードを抽出:::::
select * from table order by key1 desc limit 0, 3
- :::先頭から3件のレコードの場合は:::::
select * from table order by key1 limit 0, 3
- :::csvファイルをインポート:::::
mysql> set names utf8
mysql> load data infile “/tmp/dump.csv” into table inporttable fields terminated by ‘,’;
- :::フィールドの属性を変更:::::
alter table table01 modify field01 varchar(20)
- :::テーブルのデータを更新:::::
update table01 set field01=’01’, field02=’02’ where field03=’03’;
Quitoの市場
コメントを残す