new user ,but very determned ,how to create tables using SQL ???
creating tables using SQlhow do i create tables using SQl
Page 1 of 1
2 Replies - 1665 Views - Last Post: 29 November 2006 - 01:45 AM
Replies To: creating tables using SQl
#2
Re: creating tables using SQl
Posted 02 November 2006 - 08:52 AM
Though the command line, or using a GUI?
command line or programatically:
http://www.w3schools.../sql_create.asp
If by GUI, can you specify the interface?
command line or programatically:
http://www.w3schools.../sql_create.asp
If by GUI, can you specify the interface?
#3
Re: creating tables using SQl
Posted 29 November 2006 - 01:45 AM
I'm not sure about SQL, but in MySQL you can use phpMyadmin, or command line, or script written in Perl/PHP ... your choice 
In PHP it wil be something like
Welcome to Dream In Code
In PHP it wil be something like
<?php
mysql_connect("<host>", "<user>", "<password>");
mysql_select_db("your_db");
mysql_query("CREATE TABLE
name1 data_type1
name2 data_type2");
?>
Welcome to Dream In Code
This post has been edited by k0b13r: 29 November 2006 - 01:45 AM
Page 1 of 1
|
|

New Topic/Question
Reply




MultiQuote



|