資料庫服務啟動:mysql.server start
資料庫連線:mysql -uroot -pabc,輸入使用者名稱與密碼
斷開服務:exit;
資料庫服務關閉:mysql.server stop
一、查詢---select
1、select 的語法:select 列名稱 from 表名稱 (其中 * 代表選擇顯示全部的列)
insert 插入資料
1、語法: insert into 表的名稱 values(值1,值2,值3...)
或者可以指定特定的列來進行插入資料操作
insert into table_name (列1,列2,......) values (值1,值2,.....)
insert into table_name (列1,列2,......) values (值1,值2,.....),(值3,值4),(值5,值6)
三、update(更改資料)
1、語法: update 表的名稱 set 列名稱=新值 where 列名稱=某值
四、delete (資料的刪除)
語法:delete from 表的名稱 where 條件
資料庫 資料庫基本操作
操作練習 修改表結構 表資料的操作 實現 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...