We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d096344 commit 718eef1Copy full SHA for 718eef1
README.md
@@ -366,6 +366,15 @@ create table emp_dup like employee;
366
create table emp_dup select * from employee;
367
```
368
369
+## Access Controls
370
+
371
+#### Set new password to a user
372
+```sql
373
+use mysql;
374
+update user set authentication_string=PASSWORD("<new2-password>") where User='<user>';
375
+flush privileges;
376
+```
377
378
## Programming
379
380
#### Declare variables
@@ -420,4 +429,4 @@ select month("1998-12-30");
420
429
#### Extract Year
421
430
```sql
422
431
select year("1998-12-30");
423
-```
432
0 commit comments