Search
 
SCRIPT & CODE EXAMPLE
 

SQL

createdb with postgresql on ubuntu

susudo -u postgres
psqlpostgres=# create database mydb;
postgres=# create user myuser with encrypted password 'mypass';
postgres=# grant all privileges on database mydb to myuser;
Comment

PREVIOUS NEXT
Code Example
Sql :: sql download for windows 10 
Sql :: sql time format 
Sql :: Client does not support authentication protocol requested by server; consider upgrading MySQL client 
Sql :: view table mysql 
Sql :: create table query in mysql 
Sql :: drop function in sql 
Sql :: subquery in sql 
Sql :: sql convert datetime 
Sql :: sql delimiter to columns 
Sql :: INITCAP in Oracle example 
Sql :: sql where time stamp is in between 
Sql :: sql server delete table 
Sql :: move table to a different schema 
Sql :: mysqldump database 
Sql :: 2nd max salary query in sql 
Sql :: sql where part of string match 
Sql :: create function in sql 
Sql :: sql select inside select 
Sql :: SQL Updating a View 
Sql :: try catch sql 
Sql :: convert dd/mm/yyyy to yyyy-mm-dd in sql server 
Sql :: select only the month-day from date in PL-SQL 
Sql :: mysql select or insert current datetime 
Sql :: mysql GROUP BY clause; this is incompatible with sql_mode=only_full_group_by 
Sql :: sql alter column name sql server 
Sql :: How to search for a String in all Columns in all tables in SQL Server Database 
Sql :: sql order by number not ordered 
Sql :: sql pivot rows to columns 
Sql :: sql group by example 
Sql :: joins in sql 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =