表的基本操作
1、建立表:
create database person;
2、修改表名:
alter table 表名 rename 新錶名;
3、新增列:
alter table 表名 add column 列名 varchar(30);
4、刪除列:
alter table 表名 drop column 列名;
5、修改列:
alter table 表名 change 列名 int;
6、新增主鍵:
alter table person add primary key (id);
7、刪除主鍵:
alter table person drop primary key;
8、新增唯一索引:
alter table person add unique name_unique_index (`name`);
為name這一列建立了唯一索引,索引的名字是name_unique_index.
9、新增普通索引:
alter table person add index birthday_index (`birthday`);
10、刪除索引:
alter table person drop index birthday_index;alter table person drop index name_unique_index;
3 15學習筆記 從零開始
開啟python的方法 windows 環境 cmd 命令列輸入 python 另一種使用方法 先編寫程式在通過字尾為.py來儲存,然後再用cmd開啟 好處 修改時比較方便,可以直接拿滑鼠去消除或者新增 print 輸出括號中得字元 命名變數 直接命名用等號連線。不需要提前命名 print type...
從零開始學習Kinect程式設計筆記(二) 4 22
sdk的安裝目錄,sdk是安裝在預設目錄下的 c program files microsoft sdks kinect v1.8。kinect sdk安裝的時候會有乙個環境變數叫做kinectsdk10 dir,它是kinect sdk的路徑,以供visual studio使用。鏈結kinect ...
從零開始學 mysql
以下是我個人見解,不喜勿噴,如有錯誤,還望各路大神多多指教 首先介紹一下資料庫 什麼是資料庫 資料庫 database 是按照資料結構來組織 儲存和管理資料的倉庫。度娘 我的理解 資料庫就是存放資料的地方,可以幫我管理資料的乙個工具 這裡介紹資料庫和分類 什麼是mysql mysql 是一種關係型資...