I am using SQL Server 2008 and I got a database with around 1000 rows.
There is also a column called Password
, which is empty for each row.
Normally I could do something like INSERT INTO Password VALUES("helloworld");
to add something into the Password
column, but then all rows will get the same Password
.
But I want to have a different Password
for every single row in the database, a random word with 10 characters (strings and integers).
Can someone guide me to the right path how I can do this?