select table_schema,table_name,table_type,auto_increment,table_rows from information_schema.`tables` where table_schema = '資料庫名' and table_name = '表名' ;
通過查詢不同列名,獲取不同的表資訊, table_schema = "資料庫名",table_name = 」表名」, table_type = "表型別",auto_increment = 「自增主鍵id」,table_rows = 行數? 似乎不是絕對準確。
mysql 參考手冊,中文版
PL SQL設定表主鍵自動遞增
oracle沒有設定主鍵auto increment的功能,需要自己編寫序列和觸發器實現主鍵自動遞增。示例 建立表menu create table menu menuid number 10 notnull primary key,name varchar2 40 notnull id paren...
查詢分析器 建立資料 建立表 主鍵 遞增
建立乙個資料庫,並且名為 studata 初始容量為 1mb,最大容量為 5mb,每次的增長量為 10 事務檔案的邏輯名為 stulog 初始容量為 1mb,最大容量為 5mb,每次的增長量為 1mb。create database stu on primary name studata,filen...
查詢表主鍵外來鍵資訊的SQL
oracle select o.obj as objectid,o.name as tablename,oc.name as constraintname,decode c.type 1,c 2,p 3,u 4,r 5,v 6,o 7,c as constrainttype,col.name as ...