文字用單引號環繞,
數值字段不加引號。
select distinct:
select distinct column1,column2 from table1;
– 從table1中取出column1,column2中所有不重複項。
while:between like in
select column1 from table1 while ***=『man』
and,or:
order by:asc desc 排序 預設asc 公升序
insert into:插入, 帶表欄目指定插入,不帶表欄要全部資料
update:修改, update table1 set grand=50 while class=『一班』;
delete:刪除 ,delete from table1 while…;
資料庫 資料庫基本操作
操作練習 修改表結構 表資料的操作 實現 1 建立表 create table student stu no char 12 not null primary key,stu name varchar 20 not null gender tinyint 1 default1,age tinyint...
資料庫基本操作
1.查詢一周之內的資料 select from 表名 where date sub curdate interval 7 day date 欄位名 2.插入 年 月 日 時 分 秒的時間 pstmt.settimestamp 7,new timestamp system.currenttimemil...
資料庫基本操作
登入資料庫系統 mysql h localhost u root p 檢視已存在的資料庫 show databases 檢視預設儲存引擎 show variables like storage engine 建立資料庫 create database 想建立的資料庫名字 刪除資料庫 drop dat...