我想删除iframe的填充(几个像素).当我们在任何页面中使用iframe并使其高度和宽度为100%时,它会从左侧,右侧,上下左侧留下几个像素.如何移除它.请查看此URL. http://mindmaker.org.in/frame.php 我已从此页面中删除滚动条,但几乎没有从所有方面删除像素
我想更新任何(提供的)行值的列值。
表_A
+--------+-----------+
| num | text |
+--------+-----------+
| 1 | one |
| 2 | two |
| 3 | dont |
| 4 | four |
| 5 | five |
+--------+-----------+
Run Code Online (Sandbox Code Playgroud)
我想更新第三行值。像这样的东西:
update Table_A set `text`='three' Limit 2,1
update Table_A set `text`='three' where 1 Limit 2,1
Run Code Online (Sandbox Code Playgroud)