Navicat を使用して mysql コマンド ライン操作を実行する方法を以下に説明します。
推奨チュートリアル: MySQL データベース入門チュートリアル
1. Navicat を開きます
2. [ツール] メニューをクリックし、[コマンド ライン インターフェイス] を選択します。
3. この時点で、mysql コマンド ライン状態に入ります。
拡張情報: MySQL 基本操作コマンド
データベース操作
すべてのデータベースを表示##
mysql> show databases;(注意:最后有个 s)
#データベースを作成 ##mysql> create database test;
mysql> use test;
mysql> select database();
#現在のデータベースに含まれるテーブル情報
# #mysql> show tables; (注意:最后有个 s)
#データベースの削除
##mysql> drop database test;
注: データベースに接続する操作の前に、「use <データベース名>」を使用してください。 テーブルの作成
コマンド:
create table <テーブル名> (<フィールド名 1> <タイプ 1> [,..< ;フィールド名> <タイプn>]);例:
mysql> create table MyClass( > id int(4) not null primary key auto_increment, > name char(20) not null, > sex int(4) not null default '0', > degree double(16,2));
テーブル構造の取得
コマンド:
例:
mysql> describe MyClass mysql> desc MyClass; mysql> show columns from MyClass;
テーブルを削除
コマンド:
例: MyClass という名前のテーブルを削除します
mysql> drop table MyClass;
Insert data
コマンド:
例:
mysql> insert into MyClass values(1,'Tom',96.45),(2,'Joan',82.99), (2,'Wang', 96.59);
テーブル内のデータのクエリ
すべての行のクエリ
mysql> select * from MyClass;
最初の数行のデータのクエリ例: テーブル MyClass のデータの最初の 2 行を表示します
mysql> select * from MyClass order by id limit 0,2;
または
mysql> select * from MyClass limit 0,2;
delete from table name whereexpression
例: テーブル MyClass
mysql> delete from MyClass where id=1;
の番号 1 のレコードを削除しますテーブル内のデータを変更します
テーブル名を更新 set field=new value,...where 条件
mysql> update MyClass set name='Mary' where id=1;
コマンド :
alter table table name add field type other;
例: フィールド passtest がテーブル MyClass に追加され、タイプは int(4)、デフォルト値は 0
mysql> alter table MyClass add passtest int(4) default '0'
テーブル名の変更
テーブルの名前を元のテーブル名を新しいテーブル名に変更します;
例: テーブル MyClass の名前を YouClass に変更します
mysql> rename table MyClass to YouClass;
Update field content
update table name set field name = new content
update table Name set field name = replace(field name, 'old content', 'new content');
例: の前に 4 つのスペースを追加します。記事
rree
以上がmysqlコマンドライン操作にnavicatを使用するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。