mysql基本操作


windowの下で、mysqlサービスの起動、停止mysqlデータベースnet start mysql停止mysqlデータベースnet stop mysql再起動mysqlデータベースnet restart mysql命令の形式、mysql基本命令の使用1、命令のキャンセル\c 2、mysqlウィンドウexitから退出します。またはquit;またはctrl+c 3、データベースバージョン番号select versionを確認する()。4、現在存在するデータベースshow databasesを表示する。5、testデータベースuse testを選択する。6、選択したデータベースを調べてselect database();7、データベースの中国語コードset names utf 8を設定します。8、testデータベースcreate database test 9を作成し、mtestテーブルcreate table mtestを作成します。increment、name varhar(20)、sex char(1)、email varhar(50)、birth datetime、prmary key(id));10、mtest表にデータinsert into mtest(`name`,`sex`,`email`,`birth`)values('zhang san','1','を挿入する。[email protected]',now();11、mtest表のnameは張三の情報select*from mtest where name='zhangsan'を調べます。12、id号の降順でselect*from mtest order by id descを出力する。13、第11~20条データ情報select*from mtest id limit 10,10を表示する。