doxygen documentation
[csql.git] / test / tools / csql / exp.test033.ksh
blob4ca58a2a09b736cec8e4dd4a07ea2f699ad3985d
1 Statement Executed
2 Statement execute failed with error -14
3 Statement Executed: Rows Affected = 1
4 Statement Executed: Rows Affected = 1
5 echo select count(f1) from t1;
6 ---------------------------------------------------------
7 COUNT(f1)
8 ---------------------------------------------------------
9 2
11 CREATE TABLE t1 (f1 INT NOT NULL , f2 CHAR (10) NOT NULL , f3 INT );
12 INSERT INTO t1 VALUES(1, '1',1);
13 INSERT INTO t1 VALUES(3, '1',3);
14 Statement Executed