-- 데이터베이스의 사용자 테이블을 호출
--select * from sysobjects where xtype='U' order by name

-- 데이터베이스의 사용자 테이블 중 특정 필드가 있는 테이블만 호출한다.
select tbl.name, col.name colnm
from (
select id,
name
from sysobjects
where xtype = 'U'
--and name = 'tblBBS_DTQNA'
and name in ( select name from sysobjects where xtype='U' )
) tbl

inner join syscolumns col on col.id = tbl.id
left outer join sysindexkeys idx on idx.id = col.id and col.colid = idx.colid and indid = 1

where col.name in ( 'dtPubDate' )
order by tbl.name
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2008/04/18 20:41 2008/04/18 20:41
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/3185

Trackback URL : http://tcbs17.cafe24.com/tc/trackback/3185

« Previous : 1 : ... 3244 : 3245 : 3246 : 3247 : 3248 : 3249 : 3250 : 3251 : 3252 : ... 6391 : Next »

블로그 이미지

- 홍반장

Archives

Recent Trackbacks

Calendar

«   2024/11   »
          1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Statistics Graph

Site Stats

Total hits:
240449
Today:
245
Yesterday:
856