Just look up the "create table" statement in SQL books on line

Basic syntax is :

Create Table
[
    database_name.[owner].
    | owner.
] table_name
(
    {    <column_definition>
        | column_name AS computed_column_expression
        | <table_constraint>
    } [,...n]
)

for msSQL
but there is a mySQL statement  that does the same.

~Justin





----- Original Message -----
From: "John Petraitis" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, August 17, 2000 10:50 AM
Subject: Creating database tables with SQL: wasn't there a KB article?


> I can't seem to find the KB article which goes through creating new
database
> tables just using SQL statements.  I've seen it once, but I don't remenber
> if there were driver limitations, or how to set it the files up in
> Administrator.  Any clues?
> Thanks.
>
>
> ________________________________________________________________________
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
>
> --------------------------------------------------------------------------
----
> Archives: http://www.mail-archive.com/cf-linux%40houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_linux or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>
>

------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/cf-linux%40houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_linux or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to