不同的数据库,比如(sqlserver、Mysql、Oracle)它们的数据库sql语句相同吗?
答案:2 悬赏:60 手机版
解决时间 2021-02-12 06:25
- 提问者网友:送舟行
- 2021-02-11 21:00
不同的数据库,在数据库结构和字段相同的情况下,比如(sqlserver、Mysql、Oracle)它们的数据库sql语句相同吗?例如sql语句查询,查找。
最佳答案
- 五星知识达人网友:爱难随人意
- 2021-02-11 22:40
都遵循统一的标准,但存在一些小的差异。。(大同小异)
比如选取前10行
sqlserver:
SELECt TOP 10 * FROM table
oracle:
select * from table where rownum < 10
Mysql:
select * from table limit 1,10
还有很多差异的东西。。暂时没有发现有整理好的完整差异资料
比如选取前10行
sqlserver:
SELECt TOP 10 * FROM table
oracle:
select * from table where rownum < 10
Mysql:
select * from table limit 1,10
还有很多差异的东西。。暂时没有发现有整理好的完整差异资料
全部回答
- 1楼网友:我住北渡口
- 2021-02-11 23:39
select pid, name, note, price, amount, count, photo, rownum rn from product where (name like ? or note like ? or price like ? or amount like ?) order by pid limit ?,?
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯