標籤:rename char not date 建立 student prim class def
##################################################################author: 陳月白#_blogs: http://www.cnblogs.com/chenyuebai/#################################################################
version: 5.7.17
--------------------------------------------------------------------------------------------------------------------------------------------1.資料庫操作建立庫:create database samp_db character set gbk;刪除資料庫: drop database samp_db;
--------------------------------------------------------------------------------------------------------------------------------------------2.表操作
建立表create table students(id int not null primary key,name char(12) not null,sex char(4) not null,age int not null,tel char(13) not null default ‘-‘)
添加列基本形式: alter table 表名 add 列名 列資料類型 [after 插入位置];樣本:在表的最後追加列 address: alter table students add address char(60);在名為 age 的列後插入列 birthday: alter table students add birthday date after age;修改列基本形式: alter table 表名 change 列名稱 列新名稱 新資料類型;樣本:將表 tel 列改名為 telphone: alter table students change tel telphone char(13) default "-";將 name 列的資料類型改為 char(16): alter table students change name name char(16) not null;刪除列基本形式: alter table 表名 drop 列名稱;樣本:刪除 birthday 列: alter table students drop birthday;重新命名表基本形式: alter table 表名 rename 新表名;樣本:重新命名 students 表為 workmates: alter table students rename workmates;刪除整張表基本形式: drop table 表名;樣本: 刪除 workmates 表: drop table workmates;刪除整個資料庫基本形式: drop database 資料庫名;樣本: 刪除 samp_db 資料庫: drop database samp_db;--------------------------------------------------------------------------------------------------------------------------------------------3.資料操作insert into students values(00001,‘陳月白‘,‘male‘,24,‘‘)INSERT into testdb.students(id,name,sex,age) VALUES (00003,‘李林‘,‘male‘,22)delete 語句用於刪除表中的資料, 基本用法為:delete from 表名稱 where 刪除條件;update 語句可用來修改表中的資料, 基本的使用形式為:update 表名稱 set 列名稱=新值 where 更新條件;select * from tablename where ...
mysql 基本文法