1:使用show語句找出在伺服器上當前存在什麼資料庫:
mysql> show databases;
2:2、建立乙個資料庫mysqldata
mysql> create database mysqldata;
3:選擇你所建立的資料庫
mysql> use mysqldata; (按回車鍵出現database changed 時說明操作成功!)
4:檢視現在的資料庫中存在什麼表
mysql> show tables;
5:建立乙個資料庫表
mysql> create table mytable (name varchar(20), *** char(1));
6:顯示表的結構:
mysql> describe mytable;
7:往表中加入記錄
mysql> insert into mytable values (」hyq」,」m」);
8:用文字方式將資料裝入資料庫表中(例如d:/mysql.txt)
mysql> load data local infile 「d:/mysql.txt」 into table mytable;
9:匯入.sql檔案命令(例如d:/mysql.sql)
mysql>use database;
mysql>source d:/mysql.sql;
10:刪除表
mysql>drop table mytable;
11:清空表
mysql>delete from mytable;
12:更新表中資料
mysql>update mytable set ***=」f」 where name=』hyq』;
>
php操作mysql常用 PHP常用MySql操作
php常用mysql操作 show databases 然後可以use database name show tables 更改表名 alter table table name rename new t 新增列 alter table table name add column c n colum...
mysql幾個常用的時間函式
每次寫有關時間的sql時,都要去查api文件,在以大篇幅中,查詢半天才找到,為了提高效率先將幾個常用的時間sql函式記錄如下 1.求時間差的函式 timestampdiff interval,int expr,datetime expr 返回日期或日期時間表示式datetime expr1 和dat...
mysql常用幾個操作記錄
一 資料庫的匯出匯入 1 進入資料庫 mysql u root pmysql h localhost databasename 2.建立帳號 grantall privileges on to mysql localhost identified by mysql with grantoption ...