MySQL查看表結(jié)構(gòu)命令,如下:desc 表名;show columns from 表名;describe 表名;show create table 表名;use information_schemase
MySQL查看表結(jié)構(gòu)命令,如下:
desc 表名;
show columns from 表名;
describe 表名;
show create table 表名;
use information_schema
select * from columns where table_name='表名';
順便記下:
show databases;
use 數(shù)據(jù)庫名;
show tables;
原有一unique索引AK_PAS_Name(PAC_Name)在表tb_webparamcounter中,
執(zhí)行以下sql修改索引
alter table tb_webparamcounter drop index AK_PAS_Name;
alter table tb_webparamcounter add UNIQUE AK_PAS_Name(PC_ID,PAC_Name);
若發(fā)現(xiàn)索引的邏輯不對(duì),還需要再加一個(gè)字段進(jìn)去,執(zhí)行
alter table tb_webparamcounter drop index AK_PAS_Name;
alter table tb_webparamcounter add UNIQUE AK_PAS_Name(PC_ID,PAC_Name,PAC_Value);
注意:這時(shí)的PC_ID,PAC_Name,PAC_Value三個(gè)字段不是FOREIGN KEY
否則必需先drop FOREIGN KEY,再重做上一步才行
順便提下Oracle
select * from v$database;
select * from all_users;
select * from user_tables;
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com