MySQL 查看表結構簡單命令。
10年積累的成都網站建設、成都網站制作經驗,可以快速應對客戶對網站的新想法和需求。提供各種問題對應的解決方案。讓選擇我們的客戶得到更好、更有力的網絡服務。我雖然不認識你,你也不認識我。但先網站設計制作后付款的網站建設流程,更有阿拉爾免費網站建設讓你可以放心的選擇與我們合作。
一、簡單描述表結構,字段類型desc tabl_name;
顯示表結構,字段類型,主鍵,是否為空等屬性,但不顯示外鍵。
二、查詢表中列的注釋信息
select * from information_schema.columns where table_schema = 'db' #表所在數據庫
and table_name = 'tablename' ; #你要查的表
三、只查詢列名和注釋
select column_name,
column_comment from information_schema.columns where table_schema ='db' and
table_name = 'tablename' ;
四、#查看表的注釋
select table_name,table_comment from information_schema.tables where table_schema = 'db' and table_name ='tablename'
ps:二~四是在元數據表中查看,我在實際操作中,常常不靈光,不知為什么,有了解的大俠請留印。
五、查看表生成的DDL show create table table_name;
--books表中有字段有bId,pId等字段。
--another有bId,pId等字段(create table another select bId,pid,bAuthor from books;--相關字段以及內容來自books表)。
--books和publising建立外鍵,參照publishing中的id字段。
alter table books add constraint FK_books_publishing foreign key (pid) references publishing (id) on update cascade;
--another和publishing之間創(chuàng)建外鍵,參照publishing中的id字段。
alter table another add constraint FK_another_publishing foreign key (pId) references publishing (id) on update cascade;
--舉個簡單的更新列子:
update publishing set id = 17,pname = '愛好者' where id='14';
--當執(zhí)行這條語句時(更新publishing表),books表和another表同時進行更新。
--主表更新字段數據等,副表也隨之更新,從上面可以看出,主表是publishing,副表是books和another。
--希望能幫到你
select A.* from A join B on A.F_id=B.F_id where B.amount5;
后面的判斷條件根據你自己的表來寫。
聯合查詢
select?userinfo.userinfoid,username,?userage??from?user?join?userinfo?on?user.userinfoid?=?userinfor.userinfoid
網頁標題:mysql怎么查看主表 查看mysql中的表
文章鏈接:http://jinyejixie.com/article18/dophodp.html
成都網站建設公司_創(chuàng)新互聯,為您提供用戶體驗、網站維護、營銷型網站建設、網頁設計公司、網站營銷、虛擬主機
聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯