Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: imars
  • Order by date
  1. imars

    Changeing varchar to int

    Dwaynel, this is implicitly on the language. You only need to assign the string value to the variable of type number Ex declare @x int set @x = '001' select @x Result --->> 1
  2. imars

    Storing the result from a select statement into a variable

    dwaynel, try this Select @LastResNumber = max(ReservationNum) from Booking
  3. imars

    Why : "select distinct order_id

    Try this: select distinct OrderAddresses.order_id from OrderAddresses,ShippingDetails where OrderAddresses.order_address_id = ShippingDetails.order_address_id and ShippingDetails.b_shipping_status = 3)
  4. imars

    Comments Field

    Perhaps this might help, Resource files associate application functions with specific keys, using what are known as key bindings. A key binding connects a key to an application function. When you bind a key to a function, the program performs that function when you type that keystroke. By...
  5. imars

    Comments Field

    Perhaps this might help, Resource files associate application functions with specific keys, using what are known as key bindings. A key binding connects a key to an application function. When you bind a key to a function, the program performs that function when you type that keystroke. By...
  6. imars

    Comments Field

    Perhaps this might help, Resource files associate application functions with specific keys, using what are known as key bindings. A key binding connects a key to an application function. When you bind a key to a function, the program performs that function when you type that keystroke. By...

Part and Inventory Search

Back
Top