|
Author
|
Message
|
|
Veteran Member
|

09-23-2011
, 14:22
Multiple lines
|
#1
|
Hey, is it possible to make a SQL Statement with multiple lines like I've got SQL like this:
IP, Name, Auth, Country, Privileges..
So instead of this:
CREATE TABLE IF NOT EXISTS players (IP varchar(32), Name varchar(32), Auth varchar(32), Country varchar(3), Privileges int(2), PRIMARY KEY ( IP ))
How can I do something like this:
CREATE TABLE IF NOT EXISTS players (
IP varchar(32),
Name varchar(32),
Auth varchar(32),
Country varchar(3),
Privileges int(2),
PRIMARY KEY ( IP ))
So it will be easier to understand because of my SQL has over 30 columns.
|
|
|
|