Skip to content

Instantly share code, notes, and snippets.

@jb510
Created January 30, 2019 07:12
Show Gist options
  • Save jb510/0f0dffbb69177d4a74ddf27e64c22bea to your computer and use it in GitHub Desktop.
Save jb510/0f0dffbb69177d4a74ddf27e64c22bea to your computer and use it in GitHub Desktop.
MySQL Total size of wp_options autoload data
SELECT 'sum size in KiB', ROUND(SUM(length(option_value))/1024,0) FROM wp_options WHERE autoload='yes'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment