Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
my sql problem
Name: bhuwan81 Date: January 12, 2008 at 23:03:28 Pacific OS: winxp sp2 CPU/Ram: 512 Product: wipro
Comment:
can I have certain row of a table first in my "select * from any table". eg. suppose I have a table name 'student' with fields id and name. ids are 1,2,3,4,5 and names are a,b,c,d,e. I want to get result as the name = b should be in first row of the result always number of ids and names may increase.
Summary: Dear all, I have a problem with sql function: I want to change Amount column to Words, senirio is like this: i have a 2 column, 1 has name and 2 has amount in numbers and i want to convert that amoun...
Summary: Hello Everyone, I am having issues to connect to database from my sql navigator, here everyone else is able to connect to the same database without any problem. I have previously connected to the same...
Summary: I'm rusty with my SQL, but couldn't you do this?INSERT INTO A(primary_key, Name) SELECT sequence.NEXTVAL, name FROM SELECT DISTINCT name FROM B; ...