09.04.2016, 11:39
Quote:
[..]plus how do you know the parameters for the queries?[..]The first one doesn't use the same format as the second (SELECT field FROM table WHERE field = something)
|
pawn Code:
SELECT column1, column2, columnN FROM table_name;
pawn Code:
CREATE TABLE database_name.table_name(
column1 datatype PRIMARY KEY(one or more columns),
column2 datatype,
column3 datatype,
.....
columnN datatype,
);
In case I misunderstood what you initially meant, please rephrase.
@everyone: thanks by the way for your kind words.