Mysql 資料庫學習 簡單的增刪改查

2021-07-09 07:39:33 字數 1175 閱讀 3454

直接上**:

注釋比較詳細 就不一一說明

補充:關於資料庫預設值問題

預設值建立後是不會直接顯示

需要對資料庫進行增加才有機會觸發

比如**中的 _qianming 預設值 test

當你執行下面這個** 才會預設顯示

insert into teacher (_name,_age) values('yellow',12);

#刪除表

drop table if exists teacher

#建立表

create table teacher(

_id int primary key auto_increment ,

_name varchar(10) not null default 'tttt' ,

_age int not null ,

_qianming varchar(250) default 'test'

);#表 teacher 修改列 _qianming 預設值

alter table teacher alter _qianming set default '***xx';

#插入語句

insert into teacher (_name,_age) values('yellow',12);

insert into teacher (_name,_age,_qianming) values('blue',13,'helloworld');

insert into teacher (_name,_age,_qianming) values('red',14,'helloworld');

insert into teacher (_name,_age,_qianming) values('green',15,'helloworld');

insert into teacher (_name,_age,_qianming) values('black',16,'helloworld');

#刪除語句

delete from teacher where _name = 'blue'

#查詢select _id,_name from teacher

#增加update teacher set _age=20 where _name = 'green'

資料庫簡單增刪改

記得大一時對資料庫還是比較感冒的,但是現在叫我再像以前一樣去寫sql語句似乎有點難,分享乙份增刪改吧 資料庫語句 ddl語句 建立表和刪除表 create和drop 建立表的sql語句 欄位id代表主鍵 唯一 欄位name等等,欄位名後面跟型別 除開主鍵型別其實可以不寫 create table i...

資料庫MySQL初步學習增刪改

create table c student s id int 10 notnull s name varchar 10 default null s gender varchar 5 default null c id int 10 default null primary key s id ke...

學習MySQL(三)資料庫的增刪改查

1.查詢語句 select from 表名 注意 上面這個語句是查詢表中全部資料的意思,如果不想查詢表中全部的資料,只想查詢指定的話,把那個星號符號換成想要查詢的字段即可 2.新增語句 insert 表名 表裡的各個字段 values 對應的值 3.新增多行語句 insert 表名 表裡的各個字段 ...