MySQL中常用的語句(二)

2021-06-28 17:04:35 字數 662 閱讀 4202

15.刪除約束

alter table 表名 drop constraint 約束名;

16.新建預設值

alter table 表名 add constraint 預設值名 default null for 欄位名;

17.刪除預設值

alter table 表名 drop constraint 預設值名;

18.刪除sql server中的日誌,減小資料庫檔案大小

dump transaction 資料庫名 with no_log;

backup log 資料庫名 with no_log;(備份)

**19.獲取表中記錄的總數

select count() as recordcount from 表名*

**20.判斷表是否存在

方法1:drop table if exists 表名;

方法2:做乙個sql查詢,比如select * from 表名,如果返回空值,則表不存在

方法3:查詢:show tables like 表名,判斷返回值

if(mysql_num_rows(mysql_query(「show tables like 『」.$表名.」』」))==1)

方法4:create table if no exists 表名;**

mysql中常用的語句 mysql中常用的語句整理

mysql中常用的語句 1 建立帶自增長的主鍵的表 drop table if exists user login create table user login user id int unsigned not null auto increment,user name varchar 50 de...

MySQL中常用的語句(一)

1.查詢資料庫 show databases 2.切換資料庫 use test 資料庫名稱 3.查詢 show tables 4.建立 create table 表名 自動編號字段 int identity 1,1 primary key,欄位1 vachar 20 default 預設值 null...

MySQL中常用的SQL語句

create database 庫名 charset 指定字符集 其中有兩個常用字符集分別是utf8和utf8mb4,utf8mb4支援標稱符號的儲存 刪除乙個庫 drop database 庫名 修改庫的字符集 alter database 庫名 charset 要指定的新的字符集 檢視乙個資料庫...