Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Java
- essay
- django
- psychology
- Italy
- erlang
- comic agile
- programming_book
- Software Engineering
- history
- Linux
- hadoop
- program
- management
- Python
- agile
- Malaysia
- web
- Book
- leadership
- QT
- Book review
- France
- hbase
- MySQL
- ubuntu
- Kuala Lumpur
- Programming
- RFID
- Spain
Archives
- Today
- Total
Microsoft SQL 본문
- desc [table name] (cf. http://www.electrictoolbox.com/describe-table-structure-sql-server/ )
exec sp_columns [table name]
- select * from [table name] limit [n] (cf. http://stackoverflow.com/questions/603724/how-to-implement-limit-with-microsoft-sql-server )
select top [n] * from [table name]
- show tables (cf. http://www.webmasterworld.com/forum112/142.htm )
select name from [database name]..sysobjects where xtype='U';
exec sp_columns [table name]
- select * from [table name] limit [n] (cf. http://stackoverflow.com/questions/603724/how-to-implement-limit-with-microsoft-sql-server )
select top [n] * from [table name]
- show tables (cf. http://www.webmasterworld.com/forum112/142.htm )
select name from [database name]..sysobjects where xtype='U';
Comments