Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Update Record Upper / Lower Case

Posted on March 19, 2013October 26, 2015 By David Kittell

Upper Case

UPDATE [Members] SET [Email_1] = UPPER([Email_1]) WHERE [Email_1] = [Email_1]

Lower Case

UPDATE [Members] SET [Email_1] = LOWER([Email_1]) WHERE [Email_1] = [Email_1]
Originally Posted on March 19, 2013
Last Updated on October 26, 2015
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Code MSSQL

Post navigation

Previous post
Next post

Related Posts

BO Pri

Posted on May 20, 2013October 26, 2015

SELECT ID , RequestNumber , cat_id , CASE WHEN bo_priority IS NULL THEN ‘99999’ WHEN bo_priority = ‘0’ THEN ‘99999’ else bo_priority END as bonpri ,bo_priority , Description , requestorID , programmerID , DeadlineDate , ProjectedDate , purpose , ((SELECT location FROM dbo.tblDefaultLocation WHERE tblDefaultLocation.locationid = tblRequestInfo.location) + ‘-‘ +…

Read More

Select Records Within Date Range

Posted on April 24, 2013October 26, 2015

This query include the start and end date. SELECT * FROM table WHERE datefield BETWEEN ‘<start date>’ AND ‘<end date>’ Originally Posted on April 24, 2013Last Updated on October 26, 2015 All information on this site is shared with the intention to help. Before any source code or program is…

Read More

Get Latest SQL Query for Sessions

Posted on April 29, 2013October 26, 2015

SELECT session_id ,TEXT FROM sys.dm_exec_connections CROSS APPLY sys.dm_exec_sql_text(most_recent_sql_handle) AS ST Reference: http://blog.sqlauthority.com/2010/05/05/sql-server-get-latest-sql-query-for-sessions-dmv/ Originally Posted on April 29, 2013Last Updated on October 26, 2015 All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes