Jump to content

my sql select query problem


bhuwan81

Recommended Posts

I have a table name `student` with id 1,2,3,4,5 and name a,b,c,d,e can i have in a single query of my sql suppose name=b in first row of the result. like 2,b shold be in the first row of the result set, in short I want a certain row of the record first then rest of the records is there any such a query in my sql where we can have this type of result.

Link to comment
Share on other sites

id    student

1      a

2      b

3      c

4      d

5      e

 

 

what is with the id= 2 and student =b  ?   

 

i assume i'm mysql ! i want to show that row for you , what is with it that it would distinguished it from others rows ? how do i find it for you ?

 

if and only if you know what row to fish out , like "i want information on student "b" .  then you can get others from which aren't "b" !

 

select * from table_name where student != "b"

 

above code shows all except the row which "b" is in .

 

OR you have to have more columns to explain more that student .

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.