Skip to content
Snippets Groups Projects
Commit 2bba30c0 authored by hqo1e21's avatar hqo1e21
Browse files

sql database

parent c51c7747
No related branches found
No related tags found
No related merge requests found
cw2.sql 0 → 100644
-- phpMyAdmin SQL Dump
-- version 5.1.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: May 12, 2023 at 07:48 AM
-- Server version: 10.4.22-MariaDB
-- PHP Version: 7.4.27
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `cw2`
--
-- --------------------------------------------------------
--
-- Table structure for table `gold`
--
CREATE TABLE `gold` (
`goldBit` float DEFAULT NULL,
`goldAsk` float DEFAULT NULL,
`goldChg` float DEFAULT NULL,
`goldCHgPercent` float DEFAULT NULL,
`dateTime` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `gold`
--
INSERT INTO `gold` (`goldBit`, `goldAsk`, `goldChg`, `goldCHgPercent`, `dateTime`) VALUES
(2004.3, 2005.3, 46, 2.24, '2023-05-05 22:00:07'),
(2001.5, 2002.5, 48.8, 2.38, '2023-05-05 22:10:07'),
(2004.9, 2005.9, 45.4, 2.21, '2023-05-05 22:20:08'),
(2007.8, 2008.8, 42.5, 2.07, '2023-05-05 22:30:07'),
(2007.4, 2008.4, 42.9, 2.09, '2023-05-05 22:40:11'),
(2008.8, 2009.8, 41.7, 2.03, '2023-05-05 22:50:08'),
(2008.6, 2009.6, 41.7, 2.03, '2023-05-05 23:00:06'),
(2009.9, 2010.9, 40.4, 1.97, '2023-05-05 23:10:06'),
(2010.9, 2011.9, 39.4, 1.92, '2023-05-05 23:20:06'),
(2012.1, 2013.1, 38.2, 1.86, '2023-05-05 23:30:13'),
(2030.7, 2031.7, 3.5, 0.17, '2023-05-10 18:22:09'),
(2030.9, 2031.9, 3.3, 0.16, '2023-05-10 18:34:18');
-- --------------------------------------------------------
--
-- Table structure for table `palladium`
--
CREATE TABLE `palladium` (
`palladiumBit` float DEFAULT NULL,
`palladiumAsk` float DEFAULT NULL,
`palladiumChg` float DEFAULT NULL,
`palladiumCHgPercent` float DEFAULT NULL,
`dateTime` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `palladium`
--
INSERT INTO `palladium` (`palladiumBit`, `palladiumAsk`, `palladiumChg`, `palladiumCHgPercent`, `dateTime`) VALUES
(1402, 1552, 25, 1.82, '2023-05-05 22:00:07'),
(1402, 1552, 25, 1.82, '2023-05-05 22:10:07'),
(1400, 1550, 23, 1.67, '2023-05-05 22:20:08'),
(1393, 1543, 16, 1.16, '2023-05-05 22:30:07'),
(1394, 1544, 17, 1.23, '2023-05-05 22:40:11'),
(1396, 1546, 19, 1.38, '2023-05-05 22:50:08'),
(1392, 1542, 15, 1.09, '2023-05-05 23:00:06'),
(1396, 1546, 19, 1.38, '2023-05-05 23:10:06'),
(1401, 1551, 24, 1.74, '2023-05-05 23:20:06'),
(1402, 1552, 25, 1.82, '2023-05-05 23:30:13'),
(1505, 1655, 2, 0.13, '2023-05-10 18:22:14'),
(1508, 1658, 5, 0.33, '2023-05-10 18:34:20');
-- --------------------------------------------------------
--
-- Table structure for table `platinum`
--
CREATE TABLE `platinum` (
`platinumBit` float DEFAULT NULL,
`platinumAsk` float DEFAULT NULL,
`platinumChg` float DEFAULT NULL,
`platinumCHgPercent` float DEFAULT NULL,
`dateTime` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `platinum`
--
INSERT INTO `platinum` (`platinumBit`, `platinumAsk`, `platinumChg`, `platinumCHgPercent`, `dateTime`) VALUES
(1047, 1057, 5, 0.48, '2023-05-05 22:00:07'),
(1048, 1058, 6, 0.58, '2023-05-05 22:10:07'),
(1048, 1058, 6, 0.58, '2023-05-05 22:20:08'),
(1047, 1057, 5, 0.48, '2023-05-05 22:30:07'),
(1048, 1058, 6, 0.58, '2023-05-05 22:40:11'),
(1046, 1056, 4, 0.38, '2023-05-05 22:50:08'),
(1046, 1056, 4, 0.38, '2023-05-05 23:00:06'),
(1048, 1058, 6, 0.58, '2023-05-05 23:10:06'),
(1052, 1062, 10, 0.96, '2023-05-05 23:20:06'),
(1055, 1065, 13, 1.25, '2023-05-05 23:30:13'),
(1105, 1115, 0, 0, '2023-05-10 18:22:12'),
(1107, 1117, 2, 0.18, '2023-05-10 18:34:19');
-- --------------------------------------------------------
--
-- Table structure for table `silver`
--
CREATE TABLE `silver` (
`silverBit` float DEFAULT NULL,
`silverAsk` float DEFAULT NULL,
`silverChg` float DEFAULT NULL,
`silverCHgPercent` float DEFAULT NULL,
`dateTime` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `silver`
--
INSERT INTO `silver` (`silverBit`, `silverAsk`, `silverChg`, `silverCHgPercent`, `dateTime`) VALUES
(25.2, 25.3, 0.82, 3.15, '2023-05-05 22:00:07'),
(25.2, 25.3, 0.82, 3.13, '2023-05-05 22:10:07'),
(25.25, 25.36, 0.76, 2.92, '2023-05-05 22:20:08'),
(25.37, 25.47, 0.65, 2.5, '2023-05-05 22:30:07'),
(25.44, 25.54, 0.58, 2.21, '2023-05-05 22:40:11'),
(25.4, 25.5, 0.62, 2.38, '2023-05-05 22:50:08'),
(25.4, 25.5, 0.61, 2.36, '2023-05-05 23:00:06'),
(25.45, 25.55, 0.57, 2.19, '2023-05-05 23:10:06'),
(25.51, 25.61, 0.51, 1.96, '2023-05-05 23:20:06'),
(25.48, 25.59, 0.53, 2.04, '2023-05-05 23:30:13'),
(25.54, 25.64, 0.04, 0.16, '2023-05-10 18:22:11');
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment