1.建立表:create table table_name(列名1 列名屬性,
列名2 列名屬性,
列名3 列名屬性);
2.刪除表:drop table table_name;
當你不需要該錶時,可以用drop;(也就是說包括表名和資料啥都沒有了)
當你仍要保留該錶,但要刪除所有記錄時, 用 truncate;(仍保留表結果)
當你要刪除部分記錄時, 用 delete(刪除一行或者多行)
drop table student;(刪除學生表)
truncate table student;(刪除表資料,但表結構還在)
delete from student where name=『張三』; (刪除名字為張三的記錄)
delete刪除記錄的格式:delete from 表名 where 刪除條件;
MySQL資料庫2 建立表
1.建立表的語法形式 create table 表名 屬性名 資料型別 完整性約束條件 屬性名 資料型別 完整性約束條件 屬性名 資料型別 表名表示所要建立表的名稱,屬性名表示表中字段的名稱,資料型別表示指定 欄位的資料型別,注 1 表名不能為sql關鍵字,如create,updata,order,...
mysql 建立資料庫建立表
建立資料庫表 create database if not exists my db default charset utf8 collate utf8 general ci 注意後面這句話 collate utf8 general ci 大致意思是在排序時根據 utf8 變碼格式來排序 那麼在這個...
Mysql 2 資料庫的操作
檢視有哪些資料庫 show databases 資料庫編碼 status修改資料庫編碼 這塊引用乙個猿猴的文章 檢視建立表的語句 show create table tablename 進入資料庫 use database檢視哪些表 show tables 檢視表結構 desc tablename ...