database
文章平均质量分 62
Jonestark
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Postgresql 安装配置以及环境变量配置(centos)
1、yum安装 进去postgresql官网下载界面PostgreSQL: Downloads 选择操作系统 选择系统版本,平台信息等 会出现具体的安装步骤 拷贝脚本,自动执行并创建了数据库实例 上面的创建数据库实例sudo /usr/pgsql-13/bin/postgresql-13-setup initdb 允许开机自启动postgresql数据库sudo systemctl enable postgresql-13 .原创 2021-05-15 00:18:33 · 11365 阅读 · 7 评论 -
Apache2 with PHP 7.1 Support on Ubuntu 18.04 LTS Server
I have been testing Ubuntu 18.04 LTS recently. It is installed on my Windows 10 machine via VMware Workstation 14 Pro… There are lots of fun things in store and upcoming. Here’s how to install Apache2...转载 2018-08-17 11:13:26 · 466 阅读 · 0 评论 -
How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Ubuntu 16.04
Original website https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu-16-04#how-to-find-your-server-39-s-public-ip-addressIntroductionA “LAM...转载 2018-08-17 11:19:15 · 239 阅读 · 0 评论 -
POSTGRESQL 数据库导入导出
导入整个数据库psql -U postgres(用户名) 数据库名(缺省时同用户名) < /data/dum.sql导出整个数据库pg_dump -h localhost -U postgres(用户名) 数据库名(缺省时同用户名) >/data/dum.sql导出某个表pg_dump -h localhost -U postgres(用户名) 数据库名(...转载 2018-08-17 17:16:04 · 4892 阅读 · 1 评论 -
SQL语句中----删除表数据drop、truncate和delete的用法
SQL语句中----删除表数据drop、truncate和delete的用法一、SQL中的语法 1、drop table 表名称 eg: drop table dbo.Sys_Test 2、truncate table 表名称 eg: truncate table dbo.Sys_Test...转载 2019-01-25 23:18:32 · 242 阅读 · 0 评论
分享