Search
 
SCRIPT & CODE EXAMPLE
 

SQL

mysql create user with remote access

CREATE USER 'myuser'@'%' IDENTIFIED BY 'mypass';
GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%';
flush privileges;
Comment

PREVIOUS NEXT
Code Example
Sql :: select nls_date_format 
Sql :: postgres active connections 
Sql :: brew restart mysql 
Sql :: postgresql create table default value timestamp 
Sql :: guid to string sql 
Sql :: how to install mysql ubuntu 
Sql :: identity_insert is set to off 
Sql :: forgot mysql root password stackoverflow 
Sql :: how to get non integer value in sql 
Sql :: finding last created table mysql 
Sql :: restart the psql server windows 
Sql :: sqlalchemy_database_uri for mysql 
Sql :: sql get missing id 
Sql :: how to restart mysql in linux 
Sql :: how to get all tables in sql 
Sql :: oracle kill session by username 
Sql :: mysql first day of year 
Sql :: OSError: mysql_config not found 
Sql :: alter foreign key 
Sql :: VERIFY INDEXES IN SQL ORACLE 
Sql :: oracle time 24h 
Sql :: oracle last character of string 
Sql :: mysql history command 
Sql :: postgresql datetrunc too slow 
Sql :: postgresql if 0 then 1 
Sql :: sql try catch 
Sql :: mysql drop primary key 
Sql :: upload database mysql command line 
Sql :: t-sql find object by name 
Sql :: ordering by issue with 4 digit numbers in sql 
ADD CONTENT
Topic
Content
Source link
Name
4+9 =