mysql常規資料操作

2021-09-16 18:41:29 字數 811 閱讀 6516

1、獲取資料表中字段的個數

select count(*) from information_schema.columns where table_schema='shu'j' and table_name='car_info_detail_201801'

2、更新字段屬性:自動更新最後處理時間

alter table data_list  modify column update_time timestamp not null default current_timestamp on update current_timestamp

3、新增字段屬性:自動更新最後處理時間

alter table `mobilesite` add column update_time timestamp not null default current_timestamp on update current_timestamp

4、查詢表中的字段數量

select count(*) from information_schema.columns where table_schema='資料庫名' and table_name='表名' ;

5、mysql -u*** -p -hdb.***.com

use ***

show tables;

6、//檢視儲存的引擎

show table status from db_name where name='table_name';

show create table t4

7、檢視當前的mysql資源占有量

show full processlist

mysql 常規操作

mysql mysql是乙個開源的資料庫,可以實現資料庫的基本功能,常用的語句 檢視資料庫 show databases 進入資料庫 use databasename 新建資料庫 create database 新建表 create table tablename 欄位名 字段結構 長度區別 int...

C 連線mysql資料庫及常規操作

連線資料庫 運算元據庫,本質是利用資料庫提供的動態鏈結庫mysql.data.dll進行操作。mysql.data.dll提供以下8個類 方法一 visual studio,在 專案 右鍵 管理nuget程式包 n 然後在瀏覽裡面搜尋mysql.data並進行安裝 選擇後根據提示安裝即可。安裝完成後...

mysql資料庫一些常規操作

1.為指定mysql使用者指定表授權 grant select,insert,update,delete on testdb.orders to dba localhost 2.檢視當前mysql所有使用者 select distinct concat user user,host,as query...