1. 使用SHOW語句找出在伺服器上當前存在什麼資料庫:mysql>show databases;
2. 建立一個資料庫mysqldata:mysql>create database mysqldata;
3. 進入表中:mysql>use ***(你表的名字);
4. 建立一個表:mysql>create table text(**,**,**);(其中text也是你表的名字)例如:mysql> create table text(id int,name varchar(20));
5. 往表中加入記錄:mysql>insert into text(id,name) values(1,’暗夜’);
6. 查看錶中的資訊:mysql>select *from text;(*表示查看錶中全部資訊,只查看其中一個資訊可以這樣來寫:select name from text where id=1);
7. 刪除資料庫:mysql> drop table mytable;
8. 讓表中的ID自增:mysql>create table text(id int auto_increment,primary key(id),name varchar(10));(如果要有一個最大的ID值,應該這樣寫:mysql>create table text(id int(20) not null auto_increment,primary key(id),name varchar(10));)
9. 改變表中的資訊:mysql> update MYTABLE set id=6 where name=’dark’;
10. mysql在行的排序中:select *from 表名 order by name(自己指定以什麼順序來查看);
11. Mysql在列的排序中:alter table 表名 modify 欄位名 欄位類型 after 欄位例如:alter table user_info modify user_name varchar(10) after user_id;
12. 如何從命令列直接進入到MySQL:在命令列裡輸入:net start mysqlmysql -u root -p