您好,登錄后才能下訂單哦!
記錄自己創建數據庫,需要更具情況修改
這是以一個學生查分系統作為例子:
create table info(
student_id int not null auto_increment, //會自動加值,而且是主鍵
name char(10),
password char(8) not null default "12345678", //設置默認值是
chinese int(2) default 0,
math int(2) default 0,
english int(2) default 0,
Chemistry int(2) default 0,
Physics int(2) default 0,
time timestamp not null default current_timestamp, //會自動獲取時間,不需要插入
PRIMARY KEY (student_id)
)ENGINE=InnoDB DEFAULT CHARSET=utf8; //設置默認編碼
插入數據
insert into info(
student_id,name,password,chinese,math,english,Chemistry,Physics)
values
( "2016102401","蔡小先生","19941024",80,90,80,89,95);
刪除表中一行的數據
delete from info where student_id=2016102406;
//-------------------------------------
student_id | name | password | chinese | math | english | Chemistry | Physics | time |
+------------+--------------+----------+---------+------+---------+-----------+---------+---------------------+
| 2016102401 | 蔡小先生 | 19941024 | 80 | 90 | 80 | 89 | 95 | 2016-11-19 00:16:11 |
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。