Change the first number

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Change the first number

    Hi All, I have a list of ID numbers that are populated in from a query into a
    cfselect. The numbers start a 1, but 1 is a fixed field that will always get
    passed. What is the best way to remove 1 from the dropdown list and start the
    numbering at 2.

    EdmondsM Guest

  2. Similar Questions and Discussions

    1. change month number to name
      I have a setting for a calendar that defaults the calender to the current month <cfset cal_month=dateformat(now(), "m")> This can be changed by the...
    2. Change Max number of thread in threadpool
      Hi, Is it possible to set the max number of thread a Threadpool can handle in code ? thks
    3. Change starting page number
      Hello--I am working on a large document that must be broken into pieces for multiple users to work on. I need to number the pages of these...
    4. How Do I Change A Number to Percentage
      Hey, hope all are doing fine..... can someone help me be showing me how to change the following numbers to represent percentages 0.92857142857143...
    5. [PHP] How Do I Change A Number to Percentage
      Multiple the numbers by 100. Robbert van Andel -----Original Message----- From: Joe Harman Sent: Friday, July 25, 2003 10:05 AM To:...
  3. #2

    Default Re: Change the first number

    <cfquery datasource="myDSN">
    SELECT ID, Value
    FROM myTable
    WHERE ID <> 1
    </cfquery>

    That will return all results except ID 1.

    HTH
    Stressed_Simon Guest

  4. #3

    Default Re: Change the first number

    thanks again simon. still a little rusty but I am getting there.
    EdmondsM Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139