我的系統版本為centos7.5,mysql版本為5.7.26
語法:insert into table_name ( field1, field2,…fieldn )
values
( value1, value2,…valuen );
insert into `庫名`.`表名`
(`name`, `email`, `crdate`)
values
('super', '[email protected]',now());
這並沒有指定id,id會從1開始自增自動記錄
now函式是獲取當前時間
語法:delete from table_name [where clause]
delete from `庫名`.`表名` where id=3;
id=3的資料刪除之後再次新增資料該id依然空值
語法:update table_name set field1=new-value1, field2=new-value2
[where clause]
update `xujiantao`.`userlist` set age=18,email='[email protected]' where id=4
語法:
select column_name,column_name
from table_name
[where clause]
[offset m ][limit n]
select name ,email from `xujiantao`.`userlist` where age >= 18;
可以使用星號(*)來代替其他字段,select語句會返回表的所有字段資料 mysql資料庫na (四)資料庫操作
1.載入驅動程式 class.forname com.mysql.jdbc.driver 2.連線資料庫 connection conn drivermanager.getconnection jdbc mysql localhost 埠號 預設3306 資料庫名稱?引數1 引數值1 引數2 引數值...
Python連線mysql資料庫等常用操作
一 安裝pymysql模組 pip3 install pymysql 注 如果報錯,執行python m pip install upgrade pip 更新下pip版本 二 連線mysql等常用操作 增 刪 改 查 import pymysql 建立鏈結 conn pymysql.connect ...
mysql資料庫常用
mysql hlocalhost p3306 uroot p 進入cmd use php2016 指定預設的運算元據庫 set names gbk 告訴伺服器當前客戶端的編碼為gbk show databases 檢視當前有哪些資料庫 show tables 查詢當前資料庫下有哪些資料表 drop ...