1 echo Create table t1
(f1 int
, f2 char
(10000));
3 echo insert into t1 values
(1,'wraFASDvgaserrerqwe');
4 Statement Executed
: Rows Affected
= 1
5 echo insert into t1 values
(2,'wraFASDvgaserrerqwe');
6 Statement Executed
: Rows Affected
= 1
7 echo insert into t1 values
(3,'wraFASDvgaserrerqwe');
8 Statement Executed
: Rows Affected
= 1
9 echo insert into t1 values
(4,'wraFASDvgaserrerqwe');
10 Statement Executed
: Rows Affected
= 1
11 echo insert into t1 values
(5,'wraFASDvgaserrerqwe');
12 Statement Executed
: Rows Affected
= 1
13 echo insert into t1 values
(6,'wraFASDvgaserrerqwe');
14 Statement Executed
: Rows Affected
= 1
15 echo insert into t1 values
(7,'wraFASDvgaserrerqwe');
16 Statement Executed
: Rows Affected
= 1
17 echo insert into t1 values
(8,'wraFASDvgaserrerqwe');
18 Statement Executed
: Rows Affected
= 1
19 echo insert into t1 values
(9,'wraFASDvgaserrerqwe');
20 Statement Executed
: Rows Affected
= 1
21 echo insert into t1 values
(10,'wraFASDvgaserrerqwe');
22 Statement Executed
: Rows Affected
= 1
23 echo select * from t1
;
24 ---------------------------------------------------------
26 ---------------------------------------------------------
36 10 wraFASDvgaserrerqwe
38 <Table Information of all tables
>
40 <TableName
> t1
</TableName
>
42 <FieldName
> f1
</FieldName
>
45 <Primary
> 0 </Primary
>
47 <Default
> 0 </Default
>
48 <DefaultValue
> </DefaultValue
>
51 <FieldName
> f2
</FieldName
>
53 <Length
> 10000 </Length
>
54 <Primary
> 0 </Primary
>
56 <Default
> 0 </Default
>
57 <DefaultValue
> </DefaultValue
>
60 </Table Information of all tables
>
61 <Index Information of all Indexs
>
62 </Index Information of all Indexs
>
63 update t1
set f2
='LAKSHYA-CSQL' where f1
>=3;
64 Statement Executed
: Rows Affected
= 8
65 echo select * from t1
;
66 ---------------------------------------------------------
68 ---------------------------------------------------------
80 delete from t1 where f1
<= 7;
81 Statement Executed
: Rows Affected
= 7
82 echo select * from t1
;
83 ---------------------------------------------------------
85 ---------------------------------------------------------
90 <Table Information of all tables
>
92 <TableName
> t1
</TableName
>
94 <FieldName
> f1
</FieldName
>
97 <Primary
> 0 </Primary
>
99 <Default
> 0 </Default
>
100 <DefaultValue
> </DefaultValue
>
103 <FieldName
> f2
</FieldName
>
105 <Length
> 10000 </Length
>
106 <Primary
> 0 </Primary
>
108 <Default
> 0 </Default
>
109 <DefaultValue
> </DefaultValue
>
112 </Table Information of all tables
>
113 <Index Information of all Indexs
>
114 </Index Information of all Indexs
>