-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
データ構造の把握 #4
Comments
About MySQLmysql> show variables like 'version'; DB tables and recordsmysql> select table_name, table_rows from information_schema.TABLES where table_schema = 'isubata'; DB Schemamysql> desc channel; mysql> desc haveread; mysql> desc image; mysql> desc message; mysql> desc user; DB Indexmysql> show index from channel; mysql> show index from haveread; mysql> show index from image; mysql> show index from message; mysql> show index from user; |
tableの構成
サイズ
The text was updated successfully, but these errors were encountered: