MySql學習筆記

2021-07-09 08:28:41 字數 571 閱讀 1856

1、show databases; //查詢目前資料庫中所有的資料庫,並且顯示出來;

2.、select version(),current_date;

//從伺服器得到當前mysql的版本號與當前日期 3、

select user(); //得到當前資料庫的所有使用者

4、create database databasename; //

建立資料庫

5、use databasename; 進入到指定的資料庫當中,然後就可以操作這個資料庫當中的**了

6.show tables; //檢視當前資料庫中的所有**;

create table tablename(colums);建立表,並且給表指定相關列,例如:create table pet(name varchar(20),owner varchar(20),species varchar(20),*** char(1),birth date,death date);
7.describe tablename;將表當中的所有資訊詳細顯示出來,例如:describe pet;

mysql學習筆記 51 mysql學習筆記

初學mysql時整理,隨時更新 資料操作 增 insert into 表名 字段列表 values 值列表 值列表 如果要插入的值列表包含所有字段並且順序一致,則可以省略字段列表。可同時插入多條資料記錄!replace 與 insert 完全一樣,可互換。insert into 表名 set 欄位名...

mysql學習筆記 51 Mysql 學習筆記

一.首先進入mysql mysql u root p新增使用者許可權設定 grant all privileges on to jerry localhost identified by aa1234567 只允許本機訪問 grant all privileges on to jerry 10.80...

mysql做筆記 mysql學習筆記

alter table 新增,修改,刪除表的列,約束等表的定義。檢視列 desc 表名 修改表名 alter table t book rename to bbb 新增列 alter table 表名 add column 列名 varchar 30 刪除列 alter table 表名 drop ...