|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now! |
|
#1
|
||||
|
||||
|
Delete row
How do i delete aow drom a table? Delet doesnt seem to work. Keeps telling me invalid table name.
|
|
#2
|
||||
|
||||
|
U want your query to be something like this:
Code:
delete * from table_name where some_condition; So lets say u want to delete the row(s) that has the Name column set to "Bob": Code:
delete * from table_name where name = 'Bob'; to see all tables in your database: Code:
select * from user_tables; Hope this helps ![]() |
![]() |
| Viewing: Dev Shed Forums > Databases > Oracle Development > Delete row |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|