how to remove records from table?
no name
1 a
2 b
1 a
2 b
3 c
Answer Posted / pratap
delete from table name;
or truncate table name;
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
What is date functions?
What is pl sql variable?
Define SQL and state the differences between SQL and other conventional programming Languages?
What is trigger in sql?
what is the difference between inner and outer join? Explain with example. : Sql dba
Can we insert data in view?
i have a column which may contain this kind of value: 123*67_80,12*8889_5,34*8_874 ,12*7_7 (can contain space before a comma, and this string length can be anything) now i want to split this value into two column like: column1: 123*67,12*8889,34*8,12*7 column2: 80,5,874,7 use function for this
Why coalesce is used in sql?
Does sql require a server?
What is bind reference and how can it be created?
What are different categories of sql commands?
What are the types of optimization?
What is scalar function in sql?
what are the differences among rownum, rank and dense_rank? : Sql dba
What is pls integer?