7 lines
111 B
MySQL
7 lines
111 B
MySQL
|
INSERT INTO devices (
|
||
|
device_id,
|
||
|
device_name,
|
||
|
device_location,
|
||
|
creation_date
|
||
|
)
|
||
|
VALUES ($1, $2, $3, $4);
|