由于sqlserver用起来很不爽 可以尝试用vscode+sqlserver插件玩玩 友情提示 在vscode中新建一个.sql 并配置好与sqlserver的连接 利用sql会有提示创建表 数据库等 爽歪歪 右键选择最下面的执行query -- Create a new database called 'DatabaseName' -- Connect to the 'master' database to run this snippet -- USE master -- GO -- Cr
# switch to postgres account sudo su postgres # create a new postgres login: jetty; and set the password to jetty # since most of our database dump has jetty as the user createuser -P -d -a -e jetty #password jetty # create a new postgres login: logi