vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| |||
| slepland@italianvampires.it wrote: > hi all i have a question for you all ^^... > > > it's possible to create a foreign keys that is related not on a table , but > on a view? > No. A view does not contain any data. It is only a different way of representing data which already exists in other table(s). > if possible, the view must be a merge view or also a temptbale? > I'm not sure what you're talking about here. > thx to all > > Livio > > > -- ================== Remove the "x" from my email address Jerry Stuckle JDS Computer Training Corp. jstucklex@attglobal.net ================= |
| ||||
| > it's possible to create a foreign keys that is related not on a table , but > on a view? > > if possible, the view must be a merge view or also a temptbale? No. A foreign key is a constraint. You can only have constraints on tables, not on views. If you want to have identities that are unique across several tables, consider using an "identity table" with nothing more than an autoincrement field. Is that what you mean? Best regards, -- Willem Bogaerts Application smith Kratz B.V. http://www.kratz.nl/ |