• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

assighn table id

 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


can i assign id for each table in mysql database???
if assign , explain it..
 
Ranch Hand
Posts: 384
Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
yes buddy you can ...

just try like this ... while creating a query ... e.g.

String query = "Select * from Titles T, Names N where T.name = N.name";

I hope this'll work
 
mkabdul kadermk
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Lalit Mehra wrote:yes buddy you can ...

just try like this ... while creating a query ... e.g.

String query = "Select * from Titles T, Names N where T.name = N.name";

I hope this'll work



thanks for reply

i cant understand this one..hw assign unique id for table...

that id returns table name...

hw can i do it??
 
mkabdul kadermk
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Lalit Mehra wrote:yes buddy you can ...

just try like this ... while creating a query ... e.g.

String query = "Select * from Titles T, Names N where T.name = N.name";

I hope this'll work



thanks for reply

i cant understand this one..

hw assign unique id for table...

how do i set id for each table in database??

that id is used to find that table name...

hw can i do it??

please reply me..

thank you...
 
Bartender
Posts: 2661
19
Netbeans IDE C++ Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please do check your private messages. There is a message for you regarding an administrative matter.
And please be patient.
 
reply
    Bookmark Topic Watch Topic
  • New Topic