mysql 主键 用int还是long 还是char?有什么区别
char是定长
0-255 bytes
longtext是0-4 294 967 295 bytes 极大文本数据
longblob是二进制形式的极大文本数据
char是定长
0-255 bytes
longtext是0-4 294 967 295 bytes 极大文本数据
longblob是二进制形式的极大文本数据
安装下载安装包http://datax-opensource.oss-cn-hangzhou.aliyuncs.com/datax.tar.gz 然后解压进入解压后文件的./bin自检命令python datax.py ../j...
pg_dump -h localhost -U postgres -t tablename databasename >./test.sql导出 -t 表名 psql -d test1 -U...
最近公司提供了一台新的服务器,同时有一个盘是ssd。同时为了测试postgresql的性能,将数据放置到ssd上系统centos7.9 数据库postgresql-9.6首先停掉数据库systemctl stop pos...
mysql5.7DROP TABLE IF EXISTS `xxx_copy1`;CREATE TABLE `xxx_copy1` ( `id` int(11) UNSIGNED NOT NULL AUTO_INCR...
查看数据库的大小 select pg_database_size('test'); select pg_size_pretty(pg_database_size('test');查看单...
https://blog.csdn.net/qq_36582604/article/details/80526287...