Hi Sheela,

At 01:49 2002.10.11. -0700, you wrote:
>hi,
>I am using mysql
>while creating a table I want to give column
>descriptioneither by using  a query or GUI
>ex
>create table t1(
>a bigint not null ' here i wamt to tell what for the a
>is
>)
>
>pl help me
>
>thanks
>sheela

You can add comments to your sql statements like this: /* comment here */

For example:

create table t1
  (a bigint not null, /*comment1*/
  b int, /*comment1*/
  c char /*comment1*/
  )

Good luck,
         Daniel


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to