0
votes
1answer
48 views

How to Create a MySQL Table with the Primary Key sorted by DESC and keep it that way after INSERTing new rows?

I need to create an InnoDB table that I will use to add data to and constantly fetch the most recent 10 rows added to it. To avoid having to do an ORDER BY with every SELECT query to get those last ...
0
votes
3answers
46 views

Combined primary keys in MySQL

This may sound a bit daft - but I would like to set up the following scenario: ClientID,AdvertID 1,1 2,1 3,1 2,2 2,3 1,2 Thus, both ClientID and AdvertID must be primary ...
-2
votes
2answers
24 views

Return newest row added in MySQL

I was wondering what the code would look like to go into a table and then get the primary key in the last row that was added to the table. How would you go across doing that I do not have a ...
1
vote
1answer
81 views

Get last PrimaryKey created in MySql [duplicate]

I have a table in mysql, with primaryKey, Auto Increment and Not Null, when i create a entry with PHP, the primary key os autogenerated, how i can get it with PHP? I thinked to do $SQL = "SELECT ...
1
vote
1answer
58 views

How retrieve in PHP the generated PRIMARY KEY from an AUTO_INCREMENT column for each row with an INSERT of multiple rows in MySQL?

I have an INSERT with syntax for insert multiple rows: INSERT INTO tbl_name (a,b,c) VALUES(1,2,3),(4,5,6),(7,8,9); With MySQL function LAST_INSERT_ID() can retrieve the primary key of an generated ...
0
votes
1answer
47 views

Yii primary key increase by 2

Noticed strange thing. In my DB all tables have only odd primary keys. id | value 1 | 10 3 | 15 5 | NULL 7 | 1 In other Yii sites everything ok. Rows added by different methods ...
0
votes
2answers
99 views

Adding an input field to primary key in CakePHP

I'm new to CakePHP and still really have no thorough understanding. if I have a mysql database with only a primary key field how can I make an input field for it using cake bake option. After baking ...
0
votes
1answer
135 views

How to link the foreign key field to a primary key field from another table using php and mysql?

I got 2 tables for example a USER TABLE with id as primary key(auto-increment) and a BOOKING TABLE with userid as foreign key (integer) of id in user table. Using phpmyadmin mysql database. How do i ...
0
votes
2answers
121 views

Using a unique reference as primary key in MySQL

i'd got a general question. I very much like URLs resulting in generated pages like that: www.example.com/order/1e4fk678 Where 1e4fk678 is the variable posted to a php file generating the output. ...
0
votes
1answer
522 views

Trying to automatically insert a foreign key value into my mysql table

I am new with PHP and MySQL and need help... Im cant seem to get my head around how to automatically insert a foreign key into a table in my database. The primary key gets added as 'id' in my 'mem' ...
0
votes
1answer
37 views

Need to update FK with new PK on duplicate

I've got two tables - tonight I'm honestly believing I'm having a blonde moment. Headings HeadingID, HeadingName, TopicID SubHeadings SubHeadingID, SubHeadingName, HeadingID What I'd like to do ...
9
votes
2answers
191 views

mysql unlimited primary keys auto increment

I have a question with im really unsure with. First feel free to downvote me if its a must but i would really like to hear a more experienced developers opinion. I am building a site where i would ...
-3
votes
2answers
81 views

How to make a style list out of database information

I realize this isn't the typical question, and I will delete it tonight as to not take up space with a non-code error question, but I really need some help. I am trying to pull information from the ...
1
vote
1answer
348 views

Laravel Model with Multi Column Primary Key

So I have a simple table in my application which stores many to many relationship between users and orders. As such, this table has a 2 column primary key (userid, orderid) to store values. In ...
-1
votes
2answers
54 views

SQL Primary Key Php and speed of the Query [closed]

I have a simple question but I couldn't found the answer on the internet. I have a SQL table named result with only 2 fields : name and contents. As every single name is unique I put my primary key on ...
3
votes
7answers
648 views

mysql primary key auto increment issue

I have a table (entry_id, user_id, event_id)with entry_id set to auto increment. But i had forgotten to make entry_id as primary key. Now i have about 400 entries with same entry_id. It hasnt ...
0
votes
3answers
469 views

Connecting html form to php page according to primary key

Ok so essentially what I'm trying to do is add a q&a component to my website (first website, so my current php knowledge is minimal). I have the html page where the user's input is recorded, and ...
0
votes
3answers
75 views

Rearranging primary keys

I have a PHP page which interacts with this small MySQL database table with a simple structure. ID, Name, Address are the fields. ID is the primary key. +------+------------+-------------+ | ID | ...
-1
votes
2answers
76 views

how to store muliple rows values in single table with single id

I want to save multiple rows with single id store in table what should i do plz guide me for example: | table1 | |-----------------| |id |name | |001(pk) |Ajit | | table2 ...
1
vote
4answers
124 views

Unique url from primary key

I'm trying to create a URL similar to youtube's /v=xxx in look and in behavior. In short, users will upload files and be able to access them through that URL. This URL code needs to be some form of ...
0
votes
1answer
89 views

cakephp primay key cant be used for user login

Im having a weird issue. My employee table has id->int(11) as primary key. It also has code->varchar(36), password and some other fields. This code and password are the two fields employees use to ...
1
vote
2answers
132 views

Xml validation against xml schema fails in php but works in .NET (VS2010)

I have several xml files, but I will present only one and the xsd against which I validate it. Let me describe the problem at first. I edit the files in VS2010 and the VS run time parser shows no ...
0
votes
4answers
271 views

How can i get the last inserted value of primary kay field?

I am using MySQL.I have to get the last inserted record's primary key value. How can i get this?
0
votes
3answers
81 views

column to keep count of attempts to INSERT a row that already exists

I'm trying to create a column and make it count the number of tries of insert that the user make. An example would make things much clearer : ...
7
votes
1answer
277 views

how to tell if column is primary key using mysqli?

I am converting some of my code from the older mysql extension to the mysqli extension in PHP. Previously, with the mysql extension, I had used some code like this to find the primary key in a table: ...
0
votes
2answers
207 views

PHP/MySQL: Rebuild primary key field

Problem: Primary key field is 'ID' Data is inserted/updated into it using a REPLACE INTO command, which is easy to use but unfortunately increases the 'ID' value of the Record it is replacing. So I ...
0
votes
2answers
95 views

connect forms through php and primary key

I'm trying to connect forms using one of the inputs as a form of primary key. For example, ---first form where the primary key is taken form1.php ---second form, where page1 is based on an input ...
4
votes
4answers
514 views

How can I get the auto incrementing field name or the primary key fieldname from a mysql table?

In PHP, how do I get the field name of the field that's been set as to auto increment when a new rec is added to it? In most cases, it's the same as the PRIMARY_KEY of the table but not necessarily ...
0
votes
2answers
226 views

MYSQL auto update second table query

I am having 2 tables Try1 (ID and ValueA ) and try2 (ID and valueb) In table Try1 ID is the Auto increment and Primary key, I somehow want to link this TRY1.ID to try2.ID so that when i ...
1
vote
0answers
419 views

Primary Keys, Unique Id, and Records (MySQL, PHP, Info Systems)

I am creating a social networking site that will be open to the general public and will expected to host a large number of users. The information of each user will be stored in a MySQL database, and ...
0
votes
2answers
404 views

How to obtain with PHP the last ID inserted if my primary key does not autoincrement

I have a table in MySQL that for compatibility issues we assigned specific Primary Keys, therefore they can not be auto incremented. Every time we insert a new topple (in PHP) we need to get back the ...
0
votes
1answer
111 views

CakePHP table primary key is missing in add function

I have post and comment tables and I should give the option for the user to add new comments. While adding new comments the user should have the option to select the post from the list box and add ...
2
votes
4answers
491 views

Select Primary Key Value Without Knowing Field Name

I have 3 tables, images, icons, and banners, each with a unique primary key that is also auto_incremented named image_id, icon_id, and banner_id, respectively. I'm looping through the above tables ...
0
votes
4answers
47 views

Is it possible to grab the value of the primary key upon creation of row? [duplicate]

Possible Duplicate: How to get the id of a row i've just inserted php/mysql I have a form with the fields: Name Email City State Zip and the user fills in with valid data... its ...
0
votes
1answer
476 views

PHP mysql_insert_id() for MySQL UUID() primary keys?

Is there some equivalent to PHP mysql_insert_id to fetch the last inserted UUID() primary key? (I always get 0. It works for auto_inc integers though)
1
vote
2answers
4k views

Yii Model with composite primary key

My MySQL table's primary is a composite of 2 columns: space_id (INTEGER) and day (DATE). CREATE TABLE `ck_space_calendar_cache` ( `space_id` int(11) NOT NULL, `day` date NOT NULL, `available` ...
0
votes
2answers
566 views

Ignore primary key duplicate

I have an array of almost 5000 objects I am entering into a MySQL database. The array has an index 'crn', and the corresponding column in the MySQL table is the primary key. Is there any way I can ...
0
votes
2answers
314 views

How can I copy a database table to an array while accounting for skipped IDs?

I previously designed the website I'm working on so that I'd just query the database for the information I needed per-page, but after implementing a feature that required every cell from every table ...
0
votes
2answers
182 views

ON DUPLICATE KEY UPDATE creating new records

I am having problems with the following code, it seems to work and creates the records just fine, the problem is each time I hit submit, instead of it updating the record it just creates a new one. If ...
0
votes
1answer
97 views

Setting foreign key with primary key

I have two tables that I'm referencing between, I have a comment table and an comment reply table, How would I set the comment reply tables foreign key to the comment tables primary key. All the vars ...
1
vote
1answer
310 views

Update all records in MySQL

I currently have a table that is 17 columns wide and has 30 records. Basically, it's a table from another site that I'm scraping and then inserting into MySQL table. $html = str_get_html($newHTML); ...
0
votes
2answers
488 views

How to delete a record with CodeIgniter and Datamapper if the primary key is named anything but “id”?

I have a table named usuario, an entity with the same name, and the primary key is named idusuario. I can't delete it since the primary key isn't named "id". Is it possible to circumvent this ...
0
votes
3answers
371 views

Thread safe way to get auto incremented primary key inserted into another table (so they can be joined later)

It seems there are two methods for this, the first one goes like this: $result = mysql_query("SHOW TABLE STATUS LIKE 'table_name'"); $row = mysql_fetch_array($result); $nextId = ...
1
vote
6answers
158 views

How to get a Primary ID before or at the same time it gets created?

What I am doing: (wp_posts has ID as primary key and it auto-increase) mysql_query("INSERT INTO wp_posts (post_content, post_title) VALUES ('$addEP', '$title')"); $rs = mysql_query("SELECT ID FROM ...
1
vote
2answers
208 views

Linking Multiple Columns from two tables via Primary Key

I'm working on desigining a system of tables that will let me create a small planner of sorts. The planner itself is an HTML table that draws on two different MySQL tables. The tables are: Table_1 ...
0
votes
2answers
160 views

MySQL database primary key usage

I am designing a MYSQL database for online tutoring website Let's say, I have: faculty table with (faculty_id, faculty name) subject table with (subject_id, subject name) student table with ...
14
votes
8answers
749 views

Efficient method to find collision free random numbers

I have a users table, the user ID is public. But I want to obfuscate the number of registered user and trends of the project, so I don't want to have public incrementing IDs. When a new user is ...
4
votes
5answers
4k views

Primary key and foreign key at the same time with doctrine 2

I have the two tables : table A with id as primary key table B with id as primary key and foreign key Explanation on short: I need to have in table B a primary key that also to be a foreign key ...
1
vote
4answers
509 views

autoincrement as primary key causing duplicate entries

I want an id and name to be primary key for my table. I want to increment id with every insert, so i set it to auto_increment. The problem is when i insert into table a new entry with same name, it ...
1
vote
4answers
2k views

PHP/mysql: Use column value in dropdown menu, actually add PK ID value in database

I'm learning PHP/mysql and making a database for schoolwork. I had to remake my tables with ID numbers as the PK, which kind of set me back. I have drop down menus in my add record forms where ...

1 2