我有這樣的SQL查詢如何在DERBY DB中描述和顯示錶格?
1 : show tables
2 : desc tablename
,但這似乎並沒有在德比
如何寫在德比這些查詢語法?
我想檢查表的模式,無論是主鍵或不
如何檢查在WebSphere
我有這樣的SQL查詢如何在DERBY DB中描述和顯示錶格?
1 : show tables
2 : desc tablename
,但這似乎並沒有在德比
如何寫在德比這些查詢語法?
我想檢查表的模式,無論是主鍵或不
如何檢查在WebSphere
嚴格地說,這不是SQL。相反,這些是IJ命令,必須由IJ工具處理。
下面是「描述」的文檔:http://db.apache.org/derby/docs/10.10/tools/rtoolsijcomrefdescribe.html
而這裏的文檔「顯示錶」:http://db.apache.org/derby/docs/10.10/tools/rtoolsijcomrefshow.html
你不運行在WebSphere這些命令,你在IJ運行它們。通過查詢
select st.tablename from sys.systables st LEFT OUTER join sys.sysschemas ss on (st.schemaid = ss.schemaid) where ss.schemaname ='APP'
顯示列(沒有IJ)::經由查詢
顯示錶(沒有IJ)
select * from sys.syscolumns where referenceid = (select tableid from sys.systables where tablename = 'THE_TABLE') order by columnnumber**strong text**