数据库建表: create table t1203 ("ha ha" varchar(100));
查询语句:select "ha ha" from t1203;
插入数据:insert into t1203("ha ha") values('hello world');
其他类似....