如何插入自增id
数据表中已设为自增。
//insert_arr(表名,字段名,插入值) ---》得到数组插入到数据库中 //public function insert_arr($tab_name,$tab_filed="",$insert_arr){ }
是全字段插入还是选择字段问题。
if(省略){
当一个表有10几个字段的时候,这样做感觉省略了好多,但是面对自增ID的字段如何给值。
后期修改了表结构的时候,字段的排序或者增加字段,代码肯定报错,这样恐怕不行。
}else{
一个表10几个字段都要写,后期应对表修改的时候不会出现问题,是不是我太懒了。。。。
}
回复讨论(解决方案)
自增字段可以缺省,也可以根据你的数据库配置赋予 0 或 null
你似乎是在写数据库操作类
但 $tab_filed 参数没有传递的必要
因为 $insert_arr 应该是关联数组,关联键应为字段名
楼上正解,字段名这个参数完全没必要
库里已经设为自增的就没必要插入了
这个我知道,关键是你字段名不写,它不就默认是全部字段么,那你总得给它一个值。
mysql里面给它空值是可以插入进去的,但是通过php插入是不行的。
这个我知道,关键是你字段名不写,它不就默认是全部字段么,那你总得给它一个值。
mysql里面给它空值是可以插入进去的,但是通过php插入是不行的。
直接给NULL就可以了
明白了,谢谢。
这个我知道,关键是你字段名不写,它不就默认是全部字段么,那你总得给它一个值。
mysql里面给它空值是可以插入进去的,但是通过php插入是不行的。
直接给NULL就可以了
$sql="insert into test values('uu5','uu5',NULL)";这种确实可以。
不过我说的是这种情况,$a应该给什么值?$a的位置是自增ID。
$a;
$sql="insert into test values('uu5','uu5',$a)";
。
这个我知道,关键是你字段名不写,它不就默认是全部字段么,那你总得给它一个值。
mysql里面给它空值是可以插入进去的,但是通过php插入是不行的。
直接给NULL就可以了
$sql="insert into test values('uu5','uu5',NULL)";这种确实可以。
不过我说的是这种情况,$a应该给什么值?$a的位置是自增ID。
$a;
$sql="insert into test values('uu5','uu5',$a)";
。
干嘛非要写个变量,有什么其他用途吗?

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove
