How to reset (make empty) the «Base URL for Static View Files» option value by an SQL query?

The configuration key is web/unsecure/base_static_url:

https://github.com/magento/magento2/blob/137733b/app/code/Magento/Backend/etc/adminhtml/system.xml#L444-L448

The SQL query:

UPDATE core_config_data 
	SET value = null
	WHERE 'web/unsecure/base_static_url' = path
;

See also: