What are the major differences between databases?

后端 未结 11 2087
太阳男子
太阳男子 2021-02-05 15:01

I\'m not fanatic on any database but I wish to see differences between vendors.

For instance, I use mostly Oracle and I see that others (MySQL, SQL Server, PostgreSQL, .

11条回答
  •  醉话见心
    2021-02-05 15:29

    SQL Server has a built in Auto Incrementing feature you can add to a column when you want a simple incrementing integer for a table.

    In Oracle, you need to create a sequence and apply the appropriate trigger to have it increment itself.

提交回复
热议问题