MySQL基本語法
MySQL基本語法:
1、創建庫:create database 庫名;
創建帶編碼格式的庫:create database 庫名 character set 編碼格式;
刪除庫:drop database 庫名;
2、創建表:create table 表名(字段1 類型1,字段2 類型2,字段3 類型3...);
刪除表:drop database 表名;
3、增(insert):
第一種格式:insert into 表名 (字段1,字段2,字段3,字段4)values(值1,值2,值3,值4),(值1,值 2,值3,值4),。。。
第二種格式:insert into 表名 set 字段1=值1,字段 2=值2,字段3=值3。。。;
4、刪(delete):
delete from 表名 where 條件
such as :delete from 表名 where 學號=1;
5、改(update):
update 表名 set 字段1=值1,字段2=值2,字段3=值3,。。。 where 條件
such as:delete 表名 set name=‘張三‘ where 學號=‘01‘;
6、查(select):
select * from 表名; 查找表中所有數據
select 字段1,字段2,。。。 from 表名; 查找表中指定字段值
select 字段1 from 表名 where 條件; 查找指定表中指定字段的指定值
7、在MySQL中常見的邏輯運算符:與(and),或(or),非(not)
8、數據庫查詢語言(DQL):對表的查詢語句,select
數據庫定義語言(DDL):create database、drop database 、create table、drop table
數據庫操作語言(DML):update 、insert 、delete
MySQL基本語法