Oracle

Creating auto increament column in oracle

Unlike MySQL, Oracle has not auto_increament attribute when you create a table. In MySQL, we can create table with auto increament column in simple way like this: To insert a row into [cci]test[/cci] table, simply leave blank for [cci]id[/cci] column, MySQL will automatically increse the value on every insert statement. Above statement will resulting: How

Creating auto increament column in oracle Read More »

Scroll to Top