hdarwin

db_schema

Jun 5th, 2013
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. mysql> desc board;
  2. +---------+---------+------+-----+---------+----------------+
  3. | Field | Type | Null | Key | Default | Extra |
  4. +---------+---------+------+-----+---------+----------------+
  5. | idx | int(11) | NO | PRI | NULL | auto_increment |
  6. | subject | text | YES | | NULL | |
  7. | content | text | YES | | NULL | |
  8. +---------+---------+------+-----+---------+----------------+
  9. 3 rows in set (0.00 sec)
  10.  
  11. mysql> desc user;
  12. +-------+------+------+-----+---------+-------+
  13. | Field | Type | Null | Key | Default | Extra |
  14. +-------+------+------+-----+---------+-------+
  15. | id | text | YES | | NULL | |
  16. | pw | text | YES | | NULL | |
  17. +-------+------+------+-----+---------+-------+
  18. 2 rows in set (0.00 sec)
Advertisement
Add Comment
Please, Sign In to add comment