|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stay one step ahead of the competition. Evaluate and give feedback
on some of the hottest web development tools on the market today.
Make your opinion heard! Click
Here
|
|
#1
|
|||
|
|||
|
table name contains space
hello all.
How do I use select from a tablename that contains spaces? |
|
#2
|
|||
|
|||
|
enclose the table name in double quotes, like that:
SELECT * from "student info"; |
|
#3
|
|||
|
|||
|
Using table names with spaces is a very bad idea. But if you have to:
SELECT * FROM "table with spaces" But if you quote the name with double quotes, the name will be case sensitiv!!!!! so "Table With Spaces" is different to "table with spaces" |
![]() |
| Viewing: Dev Shed Forums > Databases > Oracle Development > table name contains space |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|