Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. Small Query help needed

Small Query help needed

Scheduled Pinned Locked Moved ASP.NET
databasecollaborationhelp
3 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    siddisagar
    wrote on last edited by
    #1

    Hi Team, I am having value in a table which contains in this format 180/20, 160/24 I need to show the maximum value and Min value from SQL Query Like if Value is 180/20 then Maximum value =180 Minimum Value =20 Please help me

    D B 2 Replies Last reply
    0
    • S siddisagar

      Hi Team, I am having value in a table which contains in this format 180/20, 160/24 I need to show the maximum value and Min value from SQL Query Like if Value is 180/20 then Maximum value =180 Minimum Value =20 Please help me

      D Offline
      D Offline
      Dinesh Mani
      wrote on last edited by
      #2

      You want to do it on the SQL query or in your C# code? C# code - Split the text on "/" and get the max and min values from the resultant array. SQL query - select left(ColName, charindex('/', ColName)-1), right(ColName, len(ColName)-charindex('/', ColName)) You will need to test and correct the SQL as necessary.

      1 Reply Last reply
      0
      • S siddisagar

        Hi Team, I am having value in a table which contains in this format 180/20, 160/24 I need to show the maximum value and Min value from SQL Query Like if Value is 180/20 then Maximum value =180 Minimum Value =20 Please help me

        B Offline
        B Offline
        Blue_Boy
        wrote on last edited by
        #3

        Try this

        SELECT
        'maximum valuue='+(SUBSTRING(valstr,1,CHARINDEX('/',valstr)-1 )),
        'minimum valuue='+SUBSTRING(valstr,CHARINDEX('/',valstr)+1 ,LEN(valstr))

        FROM mytable2


        I Love T-SQL "Don't torture yourself,let the life to do it for you." If my post helps you kindly save my time by voting my post. www.aktualiteti.com

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups