mysql迁移到sybasease中null问题怎么处理

这篇文章将为大家详细讲解有关MySQL迁移到sybase ase中null问题怎么处理,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

成都创新互联专注于巴林右旗企业网站建设,响应式网站,电子商务商城网站建设。巴林右旗网站建设公司,为巴林右旗等地区提供建站服务。全流程按需定制设计,专业设计,全程项目跟踪,成都创新互联专业和态度为您提供的服务

[root@testlihb ~]# su - mysql
-bash-4.1$ mysql -uroot -p********* -h227.0.0.1 -P3306


mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| test               |
+--------------------+
4 rows in set (0.00 sec)


mysql> use test
Database changed
mysql> create table t ( a int,b int);
Query OK, 0 rows affected (0.65 sec)


mysql> insert into t values (1,null);
Query OK, 1 row affected (0.09 sec)


mysql> insert into t values (null,1);
Query OK, 1 row affected (0.10 sec)


mysql> select * from t;
+------+------+
| a    | b    |
+------+------+
|    1 | NULL |
| NULL |    1 |
+------+------+
2 rows in set (0.00 sec)


mysql> 
mysql> select ifnull(a,'') as a,ifnull(b,'') as b from t into outfile '/tmp/t.txt';
Query OK, 2 rows affected (0.00 sec)


mysql> 
mysql> 
mysql> ^DBye
-bash-4.1$ 
-bash-4.1$ 
-bash-4.1$ id
uid=27(mysql) gid=27(mysql) groups=27(mysql)
-bash-4.1$ logout
[root@testlihb ~]# su - sybase




[sybase@testlihb ~]$ isql -Usa -P**** -SASE -w999
1> use tempdb
2> go


1> create table t (a int null,b int null)
2> go
1> select * from tempdb..t
2> go
 a           b           
 ----------- ----------- 


(0 rows affected)
 
[sybase@testlihb ~]$ bcp tempdb..t in /tmp/t.txt -Usa -SASE -P***** -c


Starting copy...


2 rows copied.
Clock Time (ms.): total = 117  Avg = 58 (17.09 rows per sec.)
[sybase@testlihb ~]$ 
[sybase@testlihb ~]$ isql -Usa -P***** -SASE -w999
1> select * from tempdb..t
2> go
 a           b           
 ----------- ----------- 
           1        NULL 
        NULL           1 


(2 rows affected)
1> 
2> select * from tempdb..t where b is null
3> go
 a           b           
 ----------- ----------- 
           1        NULL 


(1 row affected)
1> 

关于“mysql迁移到sybase ase中null问题怎么处理”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。


新闻标题:mysql迁移到sybasease中null问题怎么处理
当前网址:http://csdahua.cn/article/jecede.html
扫二维码与项目经理沟通

我们在微信上24小时期待你的声音

解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流