ホームページ >データベース >mysql チュートリアル >mysqlの基本的な構文を理解する
テーブルの作成
create table <表名>( <字段名> 类型(长度) not null primary key auto_increment, **主键 name char(20) not null, sex int(4) not null default '0', **默认键 degree double(16,2) )
テーブルの削除
drop table <表名>; //情空表 delete from <表名>;
データの挿入
insert into <表名> [( <字段名1>[,..<字段名n > ])] values ( 值1 )[, ( 值n )]
テーブルのクエリ
select <字段1,字段2,...> from < 表名 > where < 表达式 >
テーブルの最初のいくつかのフィールドのクエリ
select * from MyClass order by id limit 0,2;
フィールドのsumのクエリ
テーブル名からsum('フィールド名')を選択
クエリフィールドは昇順と降順で配置されます
降順: select * from table name where 式はフィールド名で順序付けします desc
昇順: select * from table name where Putout=true order by time asc
delete table
delete from 表名 where 表达式
テーブルを変更
update 表名 set 字段=新值,… where 条件
テーブルフィールドを追加
テーブルテーブル名を変更 フィールドタイプを追加 その他;
<1 主キー: テーブルテーブル名を変更 主キー (フィールド名) を追加;
<2 一意の制約:テーブル テーブル名を変更 一意のインデックス名 (フィールド名) を追加;
テーブル フィールドを削除
alter table 表名 drop 字段名
以上がmysqlの基本的な構文を理解するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。