Skip to content

Instantly share code, notes, and snippets.

@mstarkman
Created February 5, 2013 17:11
Show Gist options
  • Save mstarkman/4715921 to your computer and use it in GitHub Desktop.
Save mstarkman/4715921 to your computer and use it in GitHub Desktop.
select * from aspnet_Users
where UserName like '%julianneyates%'
update aspnet_users
set loweredusername = LTRIM(RTRIM(loweredusername))
where UserName like '%julianneyates%'
update cs_users
set username = LTRIM(RTRIM(username))
where UserName like '%julianneyates%'
select * from cs_posts where postauthor like '%julianneyates%'
update cs_posts
set postauthor = LTRIM(RTRIM(postauthor))
where postauthor like '%julianneyates%'
update cs_posts
set postauthor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment