home *** CD-ROM | disk | FTP | other *** search
/ ActiveX Programming Unleashed CD / AXU.iso / source / chap16 / lst16_16.sql < prev    next >
Encoding:
Text File  |  1996-05-19  |  226 b   |  8 lines

  1. CREATE TABLE IDCBirthday
  2. (
  3. Name varchar (20) NULL,
  4. Birthday datetime
  5. )
  6. GO
  7. INSERT INTO IDCBirthday (Name,Birthday) VALUES ('John Doe','4 Oct 1971')
  8. INSERT INTO IDCBirthday (Name,Birthday) VALUES ('Jane Doe','9 Nov 1967')