Perfect!
Thank you very mcuh :)
2008/6/16 A. Kretschmer <[EMAIL PROTECTED]>:
> am Mon, dem 16.06.2008, um 11:48:01 +1000 mailte novice folgendes:
>> I have a table
>>
>> CREATE TABLE problem (
>> problem_id integer,
>> solution_count integer
>> );
>>
>> INSERT INTO problem VALUES (1001, 4)
am Mon, dem 16.06.2008, um 11:48:01 +1000 mailte novice folgendes:
> I have a table
>
> CREATE TABLE problem (
> problem_id integer,
> solution_count integer
> );
>
> INSERT INTO problem VALUES (1001, 4);
> INSERT INTO problem VALUES (1012, 11);
>
> SELECT * from problem;
>
> problem_i
am Mon, dem 16.06.2008, um 11:48:01 +1000 mailte novice folgendes:
> I have a table
>
> CREATE TABLE problem (
> problem_id integer,
> solution_count integer
> );
>
> INSERT INTO problem VALUES (1001, 4);
> INSERT INTO problem VALUES (1012, 11);
>
> SELECT * from problem;
>
> problem_i
Am Mon, 16 Jun 2008 11:48:01 +1000
schrieb novice <[EMAIL PROTECTED]>:
You are watching for the lpad() function ...
> I have a table
>
> CREATE TABLE problem (
> problem_id integer,
> solution_count integer
> );
>
> INSERT INTO problem VALUES (1001, 4);
> INSERT INTO problem VALUES (1012
I have a table
CREATE TABLE problem (
problem_id integer,
solution_count integer
);
INSERT INTO problem VALUES (1001, 4);
INSERT INTO problem VALUES (1012, 11);
SELECT * from problem;
problem_id | solution_count
+---
1001 | 4
1012 |