8 lines
225 B
MySQL
8 lines
225 B
MySQL
|
|
# This SQL statement changes the owner of all unowned movies be sure to change
|
||
|
|
# NEWOWNER to the name of the user who should own the movies.
|
||
|
|
|
||
|
|
UPDATE videodata
|
||
|
|
SET owner = 'NEWOWNER'
|
||
|
|
WHERE owner IS NULL
|
||
|
|
OR owner = '';
|