skip to Main Content

can't find mysqlbinlog in docker container [mysql/mysql-server:8.0.23]

step 1:create docker container docker run --name=mysql80 --restart on-failure -d -p3306:3306 -e MYSQL_ROOT_PASSWORD=test-2021 -e MYSQL_ROOT_HOST=% -e TZ=Asia/Shanghai mysql/mysql-server:8.0.23 --lower-case-table-names=1 --bind-address=0.0.0.0 --default-authentication-plugin=mysql_native_password step 2:find mysqlbinlog I use find / -name mysqlbinlog command to find nothing in docker container.

VIEW QUESTION

SQL to SELECT all groups belonging to a specific member ID AND all the users that belong to each group – Phpmyadmin

I have three tables, the relevant parts of which are: users users.userID, users.userNickname groups groups.groupID, groups.groupOwner, groups.groupName mapFriendsGroups mapFriendsGroups.userID, mapFriendsGroups.groupID To be clear, the functionality is that a primary user can create new groups which appear in the groups table.…

VIEW QUESTION
Back To Top
Search